ant-design-charts-blazor icon indicating copy to clipboard operation
ant-design-charts-blazor copied to clipboard

A Blazor chart library, based on G2Plot

Results 77 ant-design-charts-blazor issues
Sort by recently updated
recently updated
newest added

我按照[堆积面积图的示例代码](https://ant-design-blazor.gitee.io/zh-CN/charts/area)编写了以下内容: ``` @using AntDesign.Charts @using Title = AntDesign.Charts.Title @using BlazorApp.Data @inject MyService Service; @code{ IChartComponent chart1; IChartComponent chart2; protected override async Task OnInitializedAsync() { await base.OnInitializedAsync(); var records = await...

The code change: Title= new Title() { Text = "曲线折线图", Visible =true, }, Description = new Description() { Visible = true, Text = "用平滑的曲线代替折线。", }, Padding = "auto", ForceFit =...

I need use the click event on the AntDesign.Charts.Column chart, but there is no this event?

设置active 状态的示例,反复点击不同状态按钮的时候出现了错误和图标图层异常。文档操作就可以重现。

StackedColumn 显示未识别组件 但是文档里面写了有,然后反编译dll发现里面根本没实现。

It's currently not possible to show a label for the target line on the [bullet chart ](https://antblazor.com/en-US/charts/bullet)component like in the [G2Plot version](https://g2plot.antv.vision/en/examples/progress-plots/bullet#color). The bullet chart component seems to be missing...

Labels do not update after changing a Pie Charts data set `private IChartComponent PieDeploymentChart;` ![image](https://user-images.githubusercontent.com/1752840/194031727-b78c08b2-5d05-4f22-989f-7b3e18855ca2.png) `var deployment = _jiraFiltered.Select(x => x.IncidentDeployment).GroupBy(x => x).OrderByDescending(x => x.Count()).Select(x => new { type =...

I'm unable to use PieLabelConfigLine as it only has an interface. `` ![image](https://user-images.githubusercontent.com/1752840/194026081-ce98aa88-5cb3-4815-af12-ce02f2d8d8b7.png)

when using funnels there is a Chinese word on top of the funnel which is 转化率 i could not find any way to change this to English i appreciate if...

@code{ object[] data = new object[] { new { year= "1991", value= 3 }, new { year= "1992", value= 4 }, new { year= "1993", value= 3.5 }, new {...