BootstrapBlazor: feat(Chart): do not show scales and grid by default Pie/Doughnut

Is there an existing issue for this?

  • I have searched the existing issues

Is your feature request related to a problem? Please describe the problem.

No response

Describe the solution you’d like

        ds.Options.ShowXLine = false;
        ds.Options.ShowYLine = false;
        ds.Options.ShowXScales = false;
        ds.Options.ShowYScales = false;

饼图不需要XY坐标轴以及网格,可以在内部默认处理掉。

如果不好通用设计,可以从ChartDataSource派生一个类,然后默认处理饼图的配置,简化使用。

Additional context

No response

About this issue

  • Original URL
  • State: closed
  • Created a year ago
  • Comments: 17

Most upvoted comments

新增一个option ShowPieScales 默认false怎么样