Enzo
Enzo

Reputation: 4181

maxPadding doesn't work for Highstock

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?

screen shot of the problem

This is the example: http://jsfiddle.net/9ezac/1/

yAxis: {
    title: {
        text: 'Temperature (°C)'
    },
    opposite: true,
    maxPadding: .1
},

Upvotes: 0

Views: 119

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37578

You can use offset parametr for yAxis.

http://api.highcharts.com/highcharts#yAxis.offset

Upvotes: 1

Related Questions