flutter_echarts icon indicating copy to clipboard operation
flutter_echarts copied to clipboard

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

Open morningYxx opened this issue 2 years ago • 0 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' } ] } ] } ''', ), ); } }

morningYxx avatar Jun 27 '23 08:06 morningYxx