Chris,
In JavaScript month index starts from 0(January) and ends at 11(December). For more information please refer to this StackOverflow page.
A second point, I seem to have to include the following code just to get the chart to work in the first place (before I try adding striplines):
for (var i = 0; i < rawData.length; i++) { rawData[i][“x”] = new Date(rawData[i][“x”]); }
X values can either be number or date-object. In your case, to make it date-object this loop would be required.
—
Vishwas R
Team CanvasJS
Can you kindly create JSFiddle reproducing the issue you are facing and share it with us so that we can look into your code, understand the scenario better and help you out?
—
Vishwas R
Team CanvasJS
Sorry, it’s not possible to add space between columns of multi-series charts as of now.
—
Vishwas R
Team CanvasJS
Showing ‘>’ within label seems to be working fine. Can you kindly create JSFiddle reproducing the issue you are facing and share it with us so that we can look into the code, understand the scenario better and help you resolve?
From what we have observed, sometimes things get delayed mostly when we are not able to reproduce the issue or not able to understand the exact requirements or the solution that we provide may not work properly due to the variation in chart-options being used by you and us.
Having a JSFiddle helps us in figuring out the issue and many a time we can just edit your code on JSFiddle to fix the issue right away.
—
Vishwas R
Team CanvasJS
One of the representatives from sales team will get in touch with you soon. For further license related queries please contact sales[at]canvasjs[dot]com.
—
Vishwas R
Team CanvasJS
In the above snippet, we couldn’t find chart options / code related to CanvasJS. Can you kindly create JSFiddle with CanvasJS Chart options that you are using and share it with us so that we can look into code, understand the scenario better and help you resolve?
If you are looking for adding HTML table below chart showing dataPoints, please take a look at this JSFiddle.
—
Vishwas R
Team CanvasJS
@ksridharembridgesolutions-in,
Based on the error you are getting (404 Error) it seems like dependencies are missing. Kindly check for the same.
If you are still facing issue, kindly share the sample project reproducing the issue and share it with us over Google-Drive or Onedrive so that we can run it locally, understand the scenario better and help you out.
—
Vishwas R
Team CanvasJS
As address by Bivek in previous reply, zoomout in steps is not available as an inbuild feature as of now. However you can achieve the same with the help of rangeChanging event. Please take a look at this JSFiddle for an example.

—
Vishwas R
Team CanvasJS
Please take a look at this StackBlitz for an example on positioning image over chart in React.
—
Vishwas R
Team CanvasJS
Please take a look at this Sample Project on rendering chart in React Native app with the help of WebView.
—
Vishwas R
Team CanvasJS
Glad that you were able to make it work with the help of examples in our website :)
—
Vishwas R
Team CanvasJS
Please take a look at this StackBlitz for an example on positioning image over chart in React.
—
Vishwas R
Team CanvasJS
Marianne,
Does this library support line /step charts with markers
Yes, markers are supported in all line, area, scatter and bubble charts.
You can customize the color of the markers by using markerColor property. markerSize becomes zero when there is huge number of dataPoints, which you can customize by setting markerSize property. To enable zooming and panning, you can set zoomEnabled property to true.
Please refer documentation for more customization options available.
—
Vishwas R
Team CanvasJS