You can apply customBreaks with spacing set to 0 as shown in this jsfiddle.
—
Vishwas R
Team CanvasJS
You can use axis scale-breaks to remove the empty space. Also you can set spacing to 0, so that it looks continuous.
—
Vishwas R
Team CanvasJS
We are unable to find any issue when the chart related code is executed separately either in jsfiddle or in html file. Can you kindly check the plugins that are being used in your application, which may be causing the issue?
—
Vishwas R
Team CanvasJS
The code you have shared seems to be working fine across all browsers including Firefox across different platforms.
Can you kindly share the code either as html file (either over Google-Drive or Onedrive) or create jsfiddle reproducing the issue so that we can understand your scenario better and help you out?
—
Vishwas R
Team CanvasJS
Wojciech,
Zoom Out in steps is not available as of now. But by storing every zoom-steps on rangeChanged and updating the viewport-range based on zoom-steps on click of back-button (an extra button added) you can achieve the same. Please take a look at this jsfiddle.
—
Vishwas R
Team CanvasJS
Within clearThis()
, you are trying to assign dataPoints to dataSeries. Updating it properly should work fine in this case i.e. Replacing chart1.data = load1;
with chart1.options.data[0].dataPoints = load1;
should work fine. Here is the working code of the same.
—
Vishwas R
Team CanvasJS
Whenever you move finger / pointer on the chart, the chart has to know if you are trying to scroll or interact with the chart. Hence we have implemented a behavior where if you hold the finger for a while on the chart, it captures the event and doesn’t scroll. On the other hand, if you move pointer / finger quickly without pausing, it allows you to scroll the page and chart won’t zoom / pan. Can you try as mentioned above and let us know your feedback!?
—
Vishwas R
Team CanvasJS
We have just released v2.0.1 with this bug fix. Please refer to the release blog for more information. Do download the latest version from our download page and let us know your feedback.
—
Vishwas R
Team CanvasJS
We have just released v2.0.1 with this bug fix. Please refer to the release blog for more information. Do download the latest version from our download page and let us know your feedback.
—
Vishwas R
Team CanvasJS
Thanks for the suggestion. We will reconsider the behavior in future releases.
—
Vishwas R
Team CanvasJS
Yes, you can set axisY minimum to the lowest y-value. You can achieve that by finding the lowest y-value and changing axisY minimum using set method. Please take a look at this JSFiddle.
—
Vishwas R
Team CanvasJS