I would like to add a second Y-axis
on a linechart, possibly on the right side of the canvas
. I tried to use Chart.js
taken from https://github.com/Wikunia/Chart.js/tree/Double-Y-Axis in which LineDoubleY
is defined. But:
- I cannot see the example on Firefox:
ReferenceError: xPos is not defined Chart.js:1147:7
- If I use this
Chart.js
in my app:
currentChart.addData is not a function
This said: Is it possible to add a second Y-axis
in another way?
Here is a revised version of the original with a little more flexibility. The logic is pretty much the same, but extended to more than 2 datasets
Preview
Script
You send a dataset to the y2 axis with an additional property (y2axis: true). For example
Fiddle - http://jsfiddle.net/1va2kx18/
You could use one shade of colors for the series on the y axes and another for colors on the y2 axes (otherwise it's a bit confusing). Additionally you could modify your tooltip function to show the y2 values a bit differently. For example
would put square brackets around y2 values in the tooltip
If you are adding new points to the datasets using addData, there is an issue with dataset labels not being updated in the newly added points that you have to work around by updating the addData function.
If you don't want to do that just use the dataset point colors (instead of using dataset labels) to distinguish between the y and y2 series IF you use distinct point colors for y and y2 series. Here are the lines to substitute in
where you previously had
y2datasets