ZingChart: How do you make a chart with two sets of data with separate/multiple scales?

To use multiple scales, you must define multiple scales. ZingChart defines new scale objects using the 'scale-y-n' syntax. Once you have defined a new scale, you must assign that scale to the appropriate plot in the series object.

"scale-y-2": {
  "values": "0:400:100"
},
"series" : [
  {
    // Will default to scale-x and scale-y
    // you can explicitly put 
    // "scales": "scale-x, scale-y"
    "values" : [35,42,67,89,25,34,67,85]
  },
  {
    "values" : [235,342,267,389,225,334,267,385],
    // MUST use dash case and NOT camelcase (scaleY)
    "scales": "scale-x,scale-y-2"
  }
]

Here's a demo displaying how to use multiple scales on your graph.

Example: https://demos.zingchart.com/view/7SX9I5Z5

Documentation

Chart Scales
Chart Scales JSON Docs

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us