Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5 by Syncfusion Inc.

<PackageReference Include="Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5" Version="18.1.0.45" />

.NET API 5,292,032 bytes

 IOfficeChartData

public interface IOfficeChartData
Represents access to the linked or embedded data associated with a chart.
IOfficeDataRange this[int firstRow, int firstCol, int lastRow, int lastCol] { get; }

Gets the particular data range from the chart data.

void Clear()

Clears the chart data.

object GetValue(int rowIndex, int columnIndex)

Returns the cell value at the specified row and column index.

void SetChartData(object[][] data)

Sets the chart data in the specified two dimensional object array.

void SetDataRange(object[][] data, int rowIndex, int columnIndex)

Sets the chart data in the specified row and column index with the two dimensional object array.

void SetDataRange(IEnumerable enumerable, int rowIndex, int columnIndex)

Sets the chart data in the specified row and column index with the IEnumerable object data.

void SetValue(int rowIndex, int columnIndex, int value)

Sets the value in the specified row and column index of the cell with the integer value.

void SetValue(int rowIndex, int columnIndex, double value)

Sets the specified value at the specified row and column index.

void SetValue(int rowIndex, int columnIndex, string value)

Sets the value in the specified row and column index of the cell with the string value.

void SetValue(int rowIndex, int columnIndex, object value)

Sets the value in the specified row and column index of the cell with the object value.