EXTJS 6.0.x:增加轴和轴标签之间的空间

时间:2018-07-23 10:04:45

标签: extjs extjs6 extjs6-classic

我正在使用extjs 6.0.1。我们要增加轴和轴标签(x&y轴)之间的间距。

这里的任何帮助都会很棒。

Increase distance between axis & axis label

1 个答案:

答案 0 :(得分:0)

只需在轴中使用 titleMargin 配置:

          axes: [{
                type: 'numeric',
                title: 'My Title',
                titleMargin: 100,
                fields: ['field1', 'field2'],
                position: 'left',
                grid: true
            }, {
                type: 'category',
                title: 'Period',
                titleMargin: 100,
                position: 'bottom',
                fields: 'period_field',
                label: {
                    rotate: {
                        degrees: -45
                    }
                }                    
            }]