6
資産配分を表すHighChartsを使用して金融円グラフを作成しています。私の目標は、各スライスの実際の割り当て値を表すグラフを作成することですが、各スライド内には基本的に、さまざまな投資ビークルの目標パーセンテージを表示する第2のデータラベルが表示されます。現在の資産配分が目標配分値と必ずしも一致するとは限らないことに注意することが重要です。HighCharts円グラフ - 各スライス内にテキストを追加します
各スライド内のターゲットラベルを除いてすべてが動作しています。私が達成したいもののため、以下の画像を参照してください:ここで
は、私がこれまで持っているものである:ここでは
var asset_allocation_pie_chart = new Highcharts.Chart({
chart: { renderTo: 'asset_allocation_bottom_left_div' },
title: { text: 'Current Asset Allocation', style: { fontSize: '17px', color: entity_color, fontWeight: 'bold', fontFamily: 'Verdana'} },
subtitle: { text: '(As of ' + effective_date_formatted + ')', style: { fontSize: '15px', color: entity_color, fontFamily: 'Verdana', marginBottom: '10px' }, y: 40 },
tooltip: { pointFormat: '{series.name}: <b>{point.percentage}%</b>', percentageDecimals: 0 },
plotOptions: {
pie: { allowPointSelect: true, cursor: 'pointer', dataLabels: { enabled: true, color: '#000000', connectorWidth: 1, connectorColor: '#000000', formatter: function() { return '<b>' + this.point.name + '</b>:<br/> ' + Math.round(this.percentage) + ' %'; } } }
},
series: [{
type: 'pie',
name: 'Asset Allocation',
data: [['Investment Grade Bonds', InvestmentGradeBondPercentage], ['High Yield Bonds', HighYieldBondPercentage], ['Hedged Equity', HedgedEquityPercentage], ['Global Equity', GlobalEquityPercentage], ['Cash', CashPercentage]]
}],
exporting: { enabled: false },
credits: { enabled: false }
});
私はhttp://stackoverflow.com/questions/13488813/似トピックでおなじみのにお勧めハイチャート - パイ - データラベル - 内外 –