i'm wondering that i can make grid with column-unit data.
My Data is like as below.
C#public class DatasetData
{
public string Name { get; set; }
public int Index { get; set; }
public string Time { get; set; }
public object Data { get; set; }
}
C#List<DatasetData> ColData; List<List<DatasetData>> WholeData;
Razor<DxGrid data="@ColData" CssClass="grid-size" VirtualScrollingEnabled="true" TextWrapEnabled="false" AllowSort="false">
<Columns>
<DxGridDataColumn FieldName="Data"/>
</Columns>
</DxGrid>
If i make GridColumn with ColData, then it should be like 1-Column Grid.
And I want to make dynamic Grid with multi-ColData.
If there's single data in WholeData, then 1-column Grid, and if there are multiple datas in WholeData, then multi-column Grid.
Help me pleeeease…
Thanks.