3dオプションを有効にした散乱型ハイチャートを使用しています.3色の領域を2色の異なる色、例えば赤と青で色付けします。だから私の質問 です1.どのように3D領域内の色を埋めるために? 2.塗りつぶした場合、内側の3D領域を2つに分割し、2つの異なる色を追加する方法は?ハイチャートの3Dチャートの中に色を追加する方法js
マイコード)
var chartClassification = new Highcharts.Chart({
chart: {
renderTo: 'containerClassification',
margin: 20,
type: 'scatter',
options3d: {
enabled: true,
alpha: 10,
beta: 30,
depth: 250,
viewDistance: 5,
fitToPlot: false,
frame: {
bottom: { size: 10, color: 'rgba(0,0,0,0.02)' },
back: { size: 100, color: 'rgba(0,0,0,0.04)' },
side: { size: 1, color: 'rgba(0,0,0,0.06)' }
}
}
},
title: {
text: 'Classification'
},
plotOptions: {
scatter: {
width: 10,
height: 10,
depth: 10
}
},
yAxis: {
min: 0,
max: 10,
title: null
},
xAxis: {
min: 0,
max: 10,
gridLineWidth: 1
},
zAxis: {
min: 0,
max: 10,
showFirstLabel: false
},
legend: {
enabled: false
},
series: [{
name: 'Reading',
color: 'black',
data: []
}]
}です。
これのためにフィドル/デモを作成できますか?また、チャートの期待する出力のためのチャート/図面のサンプルイメージを置いてください。 – TechnoCrat