Trial Version is for evaluation purposes for 30 days which comes with ‘Trial Version’ watermark and ‘CanvasJS’ credit link. To use charts without ‘Trial Version’ and ‘CanvasJS’ Credit Link you will need to have a Commercial Version of CanvasJS. Please checkout License Page for more info & contact sales@canvasjs.com for sales related queries.
—
Vishwas R
Team CanvasJS
Datapoint gets enlarged when a dataPoint is highlighted (incase of scatter, line, bubble, etc). You can set highlightEnabled to false to disable highlighting of a dataPoint on hovering the mouse.
—
Vishwas R
Team CanvasJS
You can resize the chart by changing the height of the chart on resizing the panel as shown in this JSFiddle.
For faster response, fork out our template jsfiddle reproducing the issue you are facing. Having a jsfiddle helps us in figuring out the issue and many a times we can just edit your code on jsfiddle to fix the issue right-away. Please refer this thread for more info.
—
Vishwas R
Team CanvasJS
Please take a look at this JSFiddle which shows stripLine being updated and rendered at a static position in a dynamic chart.
—
Vishwas R
Team CanvasJS
Sven,
Datapoint x-value can either be numeric or date object, but you seems to be passing string – which is not supported. Either changing it to date-object or passing it as label should work fine in your case. Please take a look at this updated JSFiddle.
—
Vishwas R
Team CanvasJS
You can add as many striplines as you want by adding new object with value to stripLines array. Please refer documentation on stripLines for more info / customization options available.
Here is a code snippet that would help you add 3 stripLines over axisY:
stripLines: [{
value: 3366500,
label: "Average"
},{
value: 7289000,
label: "High"
},{
value: 1613000,
label: "Low"
}]
—
Vishwas R
Team CanvasJS
Can you kindly create sample project with sample data reproducing the issue and share it to us over Google-Drive or Onedrive, which helps us run your code at our end, understand the issue you are facing and help you with a solution?
—
Vishwas R
Team CanvasJS
Can you kindly create sample project with sample data reproducing the issue and share it to us over Google-Drive or Onedrive, which helps us run your code at our end, understand the issue you are facing and help you with a solution?
—
Vishwas R
Team CanvasJS
You can achieve this by formatting the label displayed over axisY and content in toolTip according to your requirements with the help of labelFormatter and contentFormatter respectively, please refer documentation for more customization options. Please take a look at this JSFiddle.
—
Vishwas R
Team CanvasJS
There is no change in the API between v1.9.10 and v2.3.1 except change in theme and addition of new features in v2.0. Please refer this blog post for more info. Just replacing canvasjs.min.js should work fine.
Can you share the JSFiddle with your use-case & the chart-options that you are using so that we can look into it, understand it better and help you resolve the issue?
—
Vishwas R
Team CanvasJS
Saida,
Setting showInLegend to true will show the legend to specific dataSeries. Please refer documentation for more info.
—
Vishwas R
Team CanvasJS
You can customize the content of toolTip with the help of content / contentFormatter. Please refer documentation on the same for more info / examples. If this doesn’t help you solve your requirements, kindly create JSFiddle with your use-case and brief us more about your requirement so that we can look into your code, understand the use-case better and help you out.
—
Vishwas R
Team CanvasJS
Samyukta,
Exporting multiple charts (morethan 5) also seems to be working fine – charts are positioned vertically and not one next to other. Can you kindly share JSFiddle reproducing the issue you are facing so that we can look into your code, understand it better and help you out?
Also refer documentation of jsPDF and html2canvas for more available options like offsets / position of an element while exporting DOM as PDF.
—
Vishwas R
Team CanvasJS
The project that you have shared seems to be a node.js project, which would give such error when it’s not run on a server. Please check this tutorial for more information on running node.js project.
—
Vishwas R
Team CanvasJS
Please take a look at tutorial on Chart with Multiple Y-Axis for step to step guide. If you are still facing issue creating chart, kindly share JSFiddle / static HTML file over Google-Drive or Onedrive reproducing the issue you are facing so that we can look into the code, understand your issue better and help you out.
—
Vishwas R
Team CanvasJS