entronad / flutter_echarts

A Flutter widget to use Apache ECharts in a reactive way.

Home Page:https://pub.dev/packages/flutter_echarts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

使用gauge仪表盘,界面显示空白。请问是什么原因,如何修改

morningYxx opened this issue · comments

@OverRide
Widget build(BuildContext context) {
return Container( // 必须要用container
height: 180,
width: 300,
child: Echarts(
option: '''
{
tooltip: {
},
series: [
{
name: 'Pressure',
type: 'gauge',
detail: {
},
data: [
{
value: 50,
name: 'SCORE'
}
]
}
]
}
''',
),
);
}
}