igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
31 lines (30 loc) • 671 B
TypeScript
import { Type } from "igniteui-react-core";
/**
* Describes available actions that can cause an ItemsSource event.
*/
export declare enum ItemsSourceAction {
/**
* One or more rows were removed from the data source.
*/
Remove = 0,
/**
* One or more rows were added to the data source.
*/
Insert = 1,
/**
* One or more rows were replaced in the data source.
*/
Replace = 2,
/**
* An item property value changed in the data source.
*/
Change = 3,
/**
* The entire data source contents were reset.
*/
Reset = 4
}
/**
* @hidden
*/
export declare let ItemsSourceAction_$type: Type;