Hello i have a Bar chart and all the values for the metrics are being shown at the left closer to the legend which is not looking good, how can i move the numbers of the Y axis to the right?
Y axis numbers position
emoya
#2
Tha tis very easy you need to use the yAxis
property and set its position like this:
.set("yAxis", { "position": "right" })
emoya
#4
Well there are two options to configure that, you can use both or one of them:
myChart.set('xAxis', { center: true }) // for center the bars when we have negative values in the axis
myChart.set("yAxis", {min: -50000, max: 50000}) // or just set the min and max