更改饼图描边颜色
Change PieChart stroke color
PieChart笔画的默认颜色是白色,怎么改成透明的?
查看示例代码 https://google.github.io/charts/flutter/example/pie_charts/donut.html
好的,笔触颜色是由构造函数设置的,所以这是一个 hack 解决方案。
创建一个扩展 ArcRendererConfig 的新 class,并使用您想要的值创建一个新的构造函数,如下所示:
class MyConfig extends ArcRendererConfig {
var stroke;
MyConfig() : this.stroke = StyleFactory.style.black;
}
PieChart笔画的默认颜色是白色,怎么改成透明的?
查看示例代码 https://google.github.io/charts/flutter/example/pie_charts/donut.html
好的,笔触颜色是由构造函数设置的,所以这是一个 hack 解决方案。 创建一个扩展 ArcRendererConfig 的新 class,并使用您想要的值创建一个新的构造函数,如下所示:
class MyConfig extends ArcRendererConfig {
var stroke;
MyConfig() : this.stroke = StyleFactory.style.black;
}