Reputation: 4181
When i use Highstock charts the yAxis legend is difficult to read with the graph lines. Do exists some way to make paddingRight to the lines?
This is the example: http://jsfiddle.net/9ezac/1/
yAxis: {
title: {
text: 'Temperature (°C)'
},
opposite: true,
maxPadding: .1
},
Upvotes: 0
Views: 119
Reputation: 37578
You can use offset parametr for yAxis.
http://api.highcharts.com/highcharts#yAxis.offset
Upvotes: 1