Reputation: 710
In js Highcharts I can enable panning by specifying a panKey and setting panning.enabled to true as specified in the documentation
panKey: 'ctrl',
panning: {
enabled: true,
type: 'x'
},
Is there any way to have panning enabled by default, so you can just click to pan without holding the specified panKey?
Upvotes: 0
Views: 549
Reputation: 710
I found the answer. This was really my fault for not experimenting and fully understanding the documentation. By default, zooming is not enabled, so leaving all zoom options blank will disable zooming. Then just set panning to enabled, and don't specify a panKey.
chart: {
panning: {
enabled: true,
type: 'x'
}
}
Upvotes: 1