web-dev-qa-db-ja.com

ハイチャートの各列に異なる色を設定します

Highchartsグラフの列ごとに異なる色を動的に設定する必要があります。私のハイチャートのグラフは次のとおりです。

options = {
         chart: {
             renderTo: 'chart',
             type: 'column',
             width: 450
         },
         title: {
             text: 'A glance overview at your contest’s status'
         },
         xAxis: {
             categories: ['Approved Photos', 'Pending Approval Photos', 
                          'Votes', 'Entrants'],
             labels: {
                 //rotation: -45,
                 style: {
                     font: 'normal 9px Verdana, sans-serif, arial'
                 }
             }
         },
         yAxis: {
             allowDecimals: false,
             min: 0,
             title: {
                 text: 'Amount'
             }
         },
         legend: {
             enabled: false
         },
         series: []
     };
     series = {
         name: "Amount",
         data: [],
         dataLabels: {
             enabled: true,
             color: '#000000',
             align: 'right',
             x: -10,
             y: 20,
             formatter: function () {
                 return this.y;
             },
             style: {
                 font: 'normal 13px Verdana, sans-serif'
             }
     }
 };

データは次のように設定されます。

for (var i in Data) {
  if (parseInt(Data[i]) != 0) {
    series.data.Push(parseInt(Data[i]));
  } else {
    series.data.Push(null);
  }
}
options.series.Push(series);
chart = new Highcharts.Chart(options);

このループの各データポイントに異なる色を動的に設定するにはどうすればよいですか?

45
user750487

Series.dataに値を追加するときに、ポイントオプションを使用して色を設定することもできます。

series.data.Push({ y: parseInt(Data[i]), color: '#FF0000' });

ポイントオプションの詳細については、 https://api.highcharts.com/class-reference/Highcharts.Point#color を参照してください。

51
escouser

Highchartsの最新バージョン(現在は3.0)を使用した別のソリューションを次に示します。

colorByPoint オプションをtrueに設定し、必要な color sequence を定義します。

options = {
    chart: {...},
    plotOptions: {
        column: {
            colorByPoint: true
        }
    },
    colors: [
        '#ff0000',
        '#00ff00',
        '#0000ff'
    ]
}

Highchartsに基づいています 回転ラベル付きの列デモ

69
Jérôme

次のいずれかの方法を試してください。

アプローチ1:

Highcharts.setOptions({ colors: ['#3B97B2', '#67BC42', '#FF56DE', '#E6D605', '#BC36FE'] });

アプローチ2:

var colors = ['#3B97B2', '#67BC42', '#FF56DE', '#E6D605', '#BC36FE', '#000'];

 $('#bar_chart').highcharts({
        chart: {
            type: 'column'              
        },
        title: {
            text: ''
        },
        subtitle: {
            text: ''
        },
        xAxis: {
            type: 'category'
        },
        yAxis: {
            title: {
                text: ''
            }
        },
        legend: {
            enabled: false
        },
        plotOptions: {
            series: {
                borderWidth: 0,
                dataLabels: {
                    enabled: false                       
                }
            }
        },         

        series: [{
            name: '',
            colorByPoint: true,
            data: [{
                name: 'Blue',
                y: 5.78,
                color: colors[0]

            }, {
                name: 'Green',
                y: 5.19,
                color: colors[1]

            }, {
                name: 'Pink',
                y: 32.11,
                color: colors[2]

            }, {
                name: 'Yellow',
                y: 10.04,
                color: colors[3]

            }, {
                name: 'Purple',
                y: 19.33,
                color: colors[4]

            }]
        }]
    });

aPIレスポンスと2シリーズの色がありました。ダイナミックな色の第2シリーズ。

以下は、シリーズマッピング中に動的な色を設定するサンプルです。

const response = [{
    'id': 1,
    'name': 'Mango',
    'color': '#83d8b6',
    'stock': 12.0,
    'demand': 28,
  },
  {
    id ': 2,
    'name': 'Banana',
    'color': '#d7e900',
    'stock': 12.0,
    'demand': 28,
  }
];
let chartData: {
  categories: [],
  series: []
};
chartData.categories = response.map(x => x.name);
chartData.series.Push({
  name: 'Series 1',
  type: 'column',
  data: response.map(x => x.demand)
});
chartData.series.Push({
  name: 'Series 2',
  type: 'column',
  data: response.map(x => ({
    y: x.stock,
    color: x.color // set color here dynamically
  }))
});
console.log('chartData: ', chartData);

HighchartsシリーズPoint and Marker についても読むことができます

0
Ravi Anand