简体   繁体   中英

Gauge chart Highchart size of the graph issue

I am facing a weird issue for size of the graph.

I want the size of strip like this.

在此处输入图片说明

However, I am getting like this.

在此处输入图片说明

You can see my efforts below.

chart: {
                type: 'gauge',
                alignTicks: false,
                height: 330,
                width: 160
            },

            title: null,
            pane: {
                startAngle: -90,
                endAngle: 90,
                size: '90%',
                background: [{
                    backgroundColor: '#fff',
                    borderWidth: 0
                }]
            },
            yAxis: {
                min: 0,
                max: 100,
                tickPosition: 'inside',
                tickColor: '#666',
                tickLength: 10,
                tickWidth: 0,
                minorTickWidth: 3,
                minorTickColor: '#fff',
                minorTickPosition: 'inside',
                minorTickLength: 0,
                minorTickInterval: null,
                offset: -10,
                lineWidth: 0,
                labels: {
                    enabled: false
                },
                endOnTick: false
            }

Your help would be appreciated.

If I understand your Question correctly: in a Gauge chart the 'width' of the strips is determined by the option thickness of each plotBand.

在此处输入图片说明

plotBands: [{
            from: 0,
            to: 20,
            thickness: 40,
            color: '#55BF3B' // green
        }, {
            from: 20,
            to: 60,
            thickness: 40,
            color: '#DDDF0D' // yellow
        }, {
            from: 60,
            to: 100,
            thickness: 40,
            color: '#DF5353' // red
        }]

See http://jsfiddle.net/doc_snyder/zd9mshm7/ for an example.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM