小编squ*_*are的帖子

减少高图中列之间的间距

我需要减少红色列之间的空间.请参考此代码

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

    colors: ['#ba0000'],
    chart: {
        type: 'column',
        spacingBottom: 10,
        spacingTop: 30,
        spacingLeft: 0,
        spacingRight: 10,

        style: {
            fontFamily: 'MuseoSans-500',
            fontSize: '14px'                
        }       

    },

    title: {
        text: ''
    },
    subtitle: {
        text: ''
    },
    xAxis: {
        categories: [
            'YTD',
            'QTD',
            'Last Period'
        ],
        labels: {
            style: {
                fontSize:'14px'
            }
        }           
    },
    yAxis: {
        min: 0,
        title: {
            text: '%'
        },

        plotLines: [{
            color: '#0054a6',
            width: 2,
            value: 48,
            dashStyle: 'Dash',
        label : {
                    text : 'AVG' …
Run Code Online (Sandbox Code Playgroud)

highcharts

2
推荐指数
1
解决办法
6119
查看次数

标签 统计

highcharts ×1