C3图重叠x轴标签

时间:2016-08-01 11:29:13

标签: javascript c3.js

C3图表重叠x轴标签,采用日期时间格式。我已经google了这个查询,但没有得到任何解决方案。有可能c3只显示几个日期时间,而不是显示哪个结果重叠x轴标签enter image description here

var data = {
    x: 'x',
    xFormat:'%Y-%m-%d/%H:%M',
    empty: {
        label: {
          text: "No Data"
        }
    },
    columns: [
        ['x', '{$dateArray}'],
        ['Attack', {$data}],
    ],colors: {
        Attack: '#67b7dc',
    },
    types: {
        Attack: 'area'
    }};
var chart = c3.generate({bindto: '#chart1',
size: {
    height: 630,
},
data: data,
grid: {
    x: {
        show: true
    },
    y: {
        show: true
    }
},
tooltip: {
    format: {
        value: function (value, ratio, id) {
            var format = value+' Gbps  [ IP: '+destIp[value]+' ]';
            return format;            
        }
    }
},
zoom: {
    enabled: true
},
subchart: {
    show: true
},axis: {
    x: {
        type: 'timeseries',
        tick: {
            format: '%b %d, %H:%M',
            rotate: 90,
            multiline: false
        }
    },
    y: {
        tick: {
            format: function (d) {
                return d.toFixed(3);
            }
        },
        label: {
            text: 'Attack Size ( Gbps )',
            position: 'outer-middle'
        }
    }
}
});

1 个答案:

答案 0 :(得分:4)

使用c3.js图表​​配置tick.count,将其设置为所需的整数值,如2,3或4。

使用c3.js Timeseries Chart exmaple来播放此配置。

没有tick.count的问题: - enter image description here

使用tick.count配置解决问题: - enter image description here