我是一个新手,React打字和自定义组件渲染图表的工作。我有一个名为StackedDonutChart的组件,它是用Highcharts创建的。
`export interface StackedDonutChartProps {
data: any[];
colors: any[];
size?: number;
};`
Object.keys(this.colors).forEach(key => {
if (this.dashboardStore.systemHealthValueTotals.hasOwnProperty(key)) {
gaugeData.push({
name: key,
value: this.dashboardStore.systemHealthValueTotals[key],
color: this.colors[key]
});
}
});
并作为
<StackedDonutChart
data={gaugeData}
colors={[this.colors]} />
但我只能看到下面所附的图像,而不是图表。在控制台中,我可以看到一切都像下面一样正常,而这个.colors的值是
availability
:
"#A78D34"
lifecycle
:
"#E0E0E0"
maintenance
:
"#00D7D5"
performance
:
"#0071B8"
:0 {y:97,颜色:'#0071B8'} 1:{y:81,颜色:'#A78D34'}长度:2【【原型】】:数组(0)
它给出这样的图表,即使数据显示在控制台中。请帮我拿这个。
2条答案
按热度按时间zphenhs41#
下面是一个如何使用props将颜色或其他选项正确传递到图表的示例:
Demo:https://codesandbox.io/s/highcharts-react-typescript-pass-options-using-props-rzgc58?file=/index.tsx
fkvaft9z2#