列类型使用highchart

时间:2017-06-30 01:11:40

标签: javascript

即使我英语很差,请理解我。 我正在使用高图。图表类型为“列”。我的问题是'系列'获取注册日期并使用'xAxis'选项'datetimeLabelFormats'。 它想在X轴上显示“%Y-%m”,但只输出'%Y'。 这是我的设置源代码。请给我一个解决方案。感谢。

enter code here

    chart: {type: 'column'},
    xAxis: {
        type: 'datetime',
        dateTimeLabelFormats: { // don't display the dummy year
            month: monthLabel,
            //year: "%b"
        },
        title: {
            text: 'date'
        },

    },
    yAxis: {
        title: {
            text: 'count'
        },
        min: 0
    },
    legend: {
        layout: 'vertical',
        align: 'right',
        verticalAlign: 'middle'
    },
    tooltip: {
        headerFormat: "<b>{series.name}</b><br>",
        pointFormat: "시간 : {point.x:"+monthLabel+"}<br>count :  {point.y:.0f}",
    },
    credits :{
        text : '',
        href : ''
    },
    plotOptions: {

    },
    series: graphData

0 个答案:

没有答案