The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
The only problem now is that I get "System.Double[]" for the y value.
Any suggestions?
SJSuyamburaja Jayakumar Syncfusion Team May 14, 2020 03:50 AM UTC
Hi Cesar,
Greetings from Syncfusion.
Currently we are working on the requirement and we will update the complete details on or before May 15, 2020.
Regards,
Suyamburaja J.
DDDevakumar Dhanapoosanam Syncfusion Team May 21, 2020 10:43 AM UTC
Hi Cesar,
Sorry for the delay.
We have checked the reported query and when set the chart DataPoint values the YValues is of type Array as you have mentioned, and you can resolve this by using the array index for the corresponding YValue set for the series for showing in the DataGrid. Please refer the below for more details setting the YValue first index value for the datagrid,
CodeSnippet:
List<SalesData> ChartData = new List<SalesData>();
for (int i = 0; i < chart.Series[0].Points.Count; i++)