highcharts
のデモはhighcharts-ng
のマニュアルで入手できます。領域の代わりに線をプロットする
私は領域グラフを描画したいが、実行すると領域は表示されず、行だけが表示される。
コードサンプルは以下のとおりです。
HTML:
<highchart id="chart1" config="chartConfig"></highchart>
角度コントローラは
$scope.chartConfig = {
chart: {
type: 'area',
spacingBottom: 30
},
title: {
text: 'Fruit consumption *'
},
subtitle: {
text: '* Jane\'s banana consumption is unknown',
floating: true,
align: 'right',
verticalAlign: 'bottom',
y: 15
},
legend: {
layout: 'vertical',
align: 'left',
verticalAlign: 'top',
x: 150,
y: 100,
floating: true,
borderWidth: 1,
backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'
},
xAxis: {
categories: ['Apples', 'Pears', 'Oranges', 'Bananas', 'Grapes', 'Plums', 'Strawberries', 'Raspberries']
},
yAxis: {
title: {
text: 'Y-Axis'
},
labels: {
formatter: function() {
return this.value;
}
}
},
tooltip: {
formatter: function() {
return '<b>' + this.series.name + '</b><br/>' +
this.x + ': ' + this.y;
}
},
plotOptions: {
area: {
fillOpacity: 0.5
}
},
credits: {
enabled: false
},
series: [{
name: 'John',
data: [0, 1, 4, 4, 5, 2, 3, 7]
}, {
name: 'Jane',
data: [1, 0, 3, null, 3, 1, 2, 1]
}]
};
ドキュメントページで利用可能な視覚化したものです:
I自分のコンピュータ上でレンダリングされたチャートがあるのに対し:
感謝。今私はこれがどのように機能するのか理解しています – Rusty