0

我无法在 yAxis 上显示 minorTicks。它在 xAxis 上运行良好。

http://jsbin.com/alupin/16/

4

1 回答 1

1

您的第二个minorTicks定义不正确。你写了:

yAxis: {
    labels: {
        format: "{0:N0}"
    },
    line: {
        width: 1
    }
},
tooltip: {
    visible: true,
    format: "{3}: {2:N0} applications",
    opacity: 1
},
minorTicks: { visible: true }

什么时候应该:

yAxis: {
    labels: {
        format: "{0:N0}"
    },
    line: {
        width: 1
    },
    minorTicks: { visible: true }
},
tooltip: {
    visible: true,
    format: "{3}: {2:N0} applications",
    opacity: 1
}

我移到了定义minorTicks: { visible: true }里面yAxis

于 2013-01-09T16:05:03.143 回答