0
votes

When I try do display flat values using HighStock chart the ticks and labes on Y Axis disappear as you can see in the followin link:

http://jsfiddle.net/garlam/VmwAQ/

$(function() {
var chart = new Highcharts.StockChart({

    chart: {
        renderTo: 'container'
    },

    rangeSelector: {
        selected: 1
    },

    yAxis: {
        title: {
            text: 'test-values'
        }
    },

    series: [{
        name: 'test',
        data: [ { x: 1361443380000, y: 10}, { x: 1361443410000, y: 10}, { x: 1361443440000, y:10}, {x:1361443470000, y:10} ]
    }]
});
});

I would like to avoid set of y axis min value

Any help ?

1

1 Answers

0
votes

You can set min / max value

yAxis: {
        min:0,
        max:20,
        title: {
            text: 'test-values'
        }
    },