igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
28 lines (27 loc) • 894 B
TypeScript
import { IgrNumericYAxis, IIgrNumericYAxisProps } from "./igr-numeric-y-axis";
import { PercentChangeYAxis } from "./PercentChangeYAxis";
/**
* A horizontal axis that uses a DateTime scale.
*
* You can use the `PercentChangeYAxis` show percentage values.
*
* ```ts
* <IgrDataChart
* dataSource={this.state.dataSource}
* width="700px"
* height="500px">
*
* <IgrPercentChangeYAxis name="yAxis" />
* </IgrDataChart>
* ```
*/
export declare class IgrPercentChangeYAxis<P extends IIgrPercentChangeYAxisProps = IIgrPercentChangeYAxisProps> extends IgrNumericYAxis<P> {
protected createImplementation(): PercentChangeYAxis;
/**
* @hidden
*/
get i(): PercentChangeYAxis;
constructor(props: P);
}
export interface IIgrPercentChangeYAxisProps extends IIgrNumericYAxisProps {
}