簡體   English   中英

將yAxis標簽獲取為xAxis類別的10%

[英]get yAxis labels as 10% of the categories of xAxis

如何將yAxis標簽作為圖表的xAxis中定義的類別的10%獲得。 例如,如果我有類似[2010,2011,2012,2013,....]的類別,則yAxis標簽應類似於201.0、201.1、201.2,...

這里我有帶有預定義類別的基本圖表

chart: {
        type: 'spline'
    },
    xAxis: {
        categories: [1340,1590,1379,1451,1671]
    },
    yAxis: {
        title: {
            text: '10% of Range'
        }
    },
    series: [{
        name: 'Tokyo',
        data: [7.0, 6.9, 9.5, 14.5, 18.4]
    }]
}

如何獲得yAxis圖值作為xAxis類別的10%,有什么方法嗎? 此外,我將從服務器接收系列和類別,因此類別將是數字。

我不能說我理解您為什么要這樣做,無論有沒有可能。 您可以使用load事件將xAxis的10%動態添加為yAxis。 像這樣:

chart: {
  events: {
    load: function() {
      this.yAxis[0].update({type: 'categories', categories: this.xAxis[0].categories.map(function(x) { return x/10; }), tickPositions: this.xAxis[0].categories.map(function(x) { return x/10; })}, true)
    }
  }
},

 Highcharts.chart('container', { chart: { events: { load: function() { this.yAxis[0].update({type: 'categories', categories: this.xAxis[0].categories.map(function(x) { return x/10; }), tickPositions: this.xAxis[0].categories.map(function(x) { return x/10; })}, true) } } }, title: { text: 'Solar Employment Growth by Sector, 2010-2016' }, subtitle: { text: 'Source: thesolarfoundation.com' }, xAxis: { type: 'categories', categories: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175] }, yAxis: { title: { text: 'Number of Employees' } }, legend: { layout: 'vertical', align: 'right', verticalAlign: 'middle' }, plotOptions: { series: { label: { connectorAllowed: false } } }, series: [{ name: 'Manufacturing', data: [24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434] }, { name: 'Sales & Distribution', data: [11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387] }, { name: 'Project Development', data: [null, null, 7988, 12169, 15112, 22452, 34400, 34227] }, { name: 'Other', data: [12908, 5948, 8105, 11248, 8989, 11816, 18274, 18111] }], }); 
 #container { min-width: 310px; max-width: 800px; height: 400px; margin: 0 auto } 
 <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/modules/series-label.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <script src="https://code.highcharts.com/modules/export-data.js"></script> <div id="container"></div> 

工作小提琴示例: https //jsfiddle.net/2jca44dj/

暫無
暫無

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

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