簡體   English   中英

Highcharts量規圖表尺寸

[英]Highcharts gauge chart size

我一直在努力使儀表更薄。 我通過將 innerRadius 設置為 90% 取得了一點成功,但我無法更改綠色部分的大小。 它總是更大。 我也嘗試過使用“outerRadius”,但到目前為止還算幸運。

var gaugeOptions = {

  chart: {
    type: 'solidgauge'
  },

  title: null,

  pane: {
    center: ['30%', '85%'],
    size: '150%',
    startAngle: -90,
    endAngle: 90,
    background: {
      backgroundColor: Highcharts.defaultOptions.legend.backgroundColor || '#EEE',
      innerRadius: '110%',
      outerRadius: '85%',
      shape: 'arc'
    }
  },

  tooltip: {
    enabled: false
  },

  // the value axis
  yAxis: {
    stops: [
      [0.1, '#55BF3B'], // green
      [0.5, '#DDDF0D'], // yellow
      [0.9, '#DF5353'] // red
    ],
    lineWidth: 0,
    minorTickInterval: null,
    tickAmount: 2,
    title: {
      y: -70
    },
    labels: {
      y: 16
    }
  },

  plotOptions: {
    solidgauge: {
      dataLabels: {
        y: 5,
        borderWidth: 0,
        useHTML: true
      }
    }
  }
};

// The speed gauge
var chartSpeed = Highcharts.chart('container-speed', Highcharts.merge(gaugeOptions, {
  yAxis: {
    min: 0,
    max: 100,
    title: {
      text: ''
    }
  },

  credits: {
    enabled: false
  },

  series: [{
    name: 'Speed',
    data: [20],
    dataLabels: {
      format: '<div style="text-align:center">' +
        '<span style="font-size:25px">{y}</span><br/>' +
        '<span style="font-size:12px;opacity:0.4">km/h</span>' +
        '</div>'
    }
  }]

}));

這是一個小提琴 我基本上是想讓綠色與灰色相匹配。

綠色部分的大小可以通過在series.data中添加屬性radiusinnerRadius來設置。 在你的情況下,它應該是:

series: [{
  name: 'Speed',
  data: [{
    y: 20,
    radius: 90,
    innerRadius: 105
  }],
  dataLabels: {...}
}]

更多信息在這里

您還可以在系列級別上設置radiusinnerRadius屬性:

    series: [{
        radius: 90,
        innerRadius: 105,
        ...
    }]

現場演示: https://jsfiddle.net/BlackLabel/fwumc7db/

API 參考資料:

https://api.highcharts.com/highcharts/series.solidgauge.innerRadius

https://api.highcharts.com/highcharts/series.solidgauge.radius

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM