ant-design-charts-blazor
ant-design-charts-blazor copied to clipboard
A Blazor chart library, based on G2Plot
In v2 of G2Plot setting `GuideLine` does nothing, the config has moved to `annotations` E.g. https://g2plot.antv.vision/en/docs/api/plots/column#-line-annotation
The AntDesign.Charts version is 0.2.2, refer to the official example, but find this 'GroupedColumnLineConfig' type. The error is shown in the following image: 
With Version 0.2.2 the `StackedColumnConfig` is no longer found. As well as the `StackedColumn` in general seems to be gone. From the history and change tracker it seems that the...
g2 existed feature https://g2-v3.antv.vision/zh/docs/api/interaction#zoom-%E7%BC%A9%E6%94%BE
First of all thank you for the librairy it's so great. I can't make the bubble chart work. Honestly someone should update the bubble chart exemple because i just cant...
I use line chart to show 8*3600 dots, and use the slider to change the x-axial window. It takes almost 19 seconds to show the chart. how to improve it?
As titled, if yes, how?thanks a lot in advance.
if (OnLegendClick.HasDelegate) await JS.InvokeVoidAsync(InteropSetEvent, Ref.Id, "legend-item:click", chartRef, nameof(JsLegendClick)); if (OnElementClick.HasDelegate) await JS.InvokeVoidAsync(InteropSetEvent, Ref.Id, "element:click", chartRef, nameof(JsOnElementClick)); if (OnTooltipChanged.HasDelegate) await JS.InvokeVoidAsync(InteropSetEvent, Ref.Id, "tooltip:show", chartRef, nameof(JsOnTooltipChanged)); ------------------------------------ [Parameter] public EventCallback OnLegendClick {...
Hi Ant-Community, _**Background**: I use the same page for the display of charts, but pass a parameter that processes the data per department. To make it visible on the report...
Hi, Follows samples in https://antblazor.com/en-US/charts/line#components-line-demo-multiple-line If I create the config as below private LineConfig countingChartConfig = new LineConfig { .................... XField = "Date", YField = "Value", SeriesField = "Name", ..............................................