怎么能点击高图中的小数字

时间:2014-10-18 12:52:05

标签: highcharts

我有这样的系列

        series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 19552.1, 95.6, 54.4]
    }]

你可以看到我在这个系列中有小分(29.9,71.5)而其他(19552.1)大于小分

让我无法点击小点

我该如何处理这个问题

你可以看到这个jsfiddle知道我的意思

2 个答案:

答案 0 :(得分:1)

或者您可以使用'minPointLength'选项

为列设置最小长度

http://api.highcharts.com/highcharts#plotOptions.column.events.click

minPointLength: 0,

jsfiddle

答案 1 :(得分:0)

如何使用对数yAxis

http://jsfiddle.net/xLcmojzr/2/

$(function () {
$('#container').highcharts({

    title: {
        text: 'Logarithmic axis demo'
    },

    xAxis: {
        tickInterval: 1
    },

    yAxis: {
        type: 'logarithmic',
        minorTickInterval: 0.1
    },

    tooltip: {
        headerFormat: '<b>{series.name}</b><br />',
        pointFormat: 'x = {point.x}, y = {point.y}'
    },

    series: [{
        data: [1, 2, 4, 8, 16, 32, 64, 128, 256, 512],
        pointStart: 1
    }]
});

});