You must be logged in to post your query.
Home › Forums › Chart Support › AxisY width
Tagged: AxisY width
Hello, im having a little problem with this. I want to have 2 charts with different values (that mean different maximums) with same width or margin. jsfiddle I let you an image to clarify what I mean
@nerviozzo96,
Aligning y-axis for multiple charts can be achieved by setting the margin property. The margin value has to be calculated based on the bounds of y-axis as shown in the code below –
var axisYBoundMax = 0; for (var i=0; i<charts.length; i++) { axisYBoundMax = Math.max(axisYBoundMax, charts[i].axisY[0].bounds.x2); } for(var i = 0; i < charts.length; i++) { charts[i].axisY[0].set("margin", axisYBoundMax - (charts[i].axisY[0].bounds.x2 - charts[i].axisY[0].bounds.x1)); }
Also, kindly take a look at this updated JSFiddle with the code to align the y-axis for multiple charts.
Considering this thread as duplicate of AxisY and AxisY2 margin/width. Hence closing the same.
— Adithya Menon Team CanvasJS
You must be logged in to reply to this topic. Login/Register