igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
49 lines (48 loc) • 1.36 kB
JavaScript
import { NumericScaleMode_$type } from "./NumericScaleMode";
import { IgrNumericAxisBase } from "./igr-numeric-axis-base";
import { ensureEnum } from "igniteui-react-core";
/**
* Defines a set of basic methods and properties used to create a StraightNumeric axis.
*/
export class IgrStraightNumericAxisBase extends IgrNumericAxisBase {
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor(props) {
super(props);
}
/**
* Gets or sets the axis scale mode.
*
* `ScaleMode` can be used on numeric axes to allow scaling data values using built-in scalers. The available scalers are linear or logarithmic.
*
* ```ts
* this.yAxis.scaleMode = NumericScaleMode.Logarithmic;
* ```
*
* ```ts
* <IgrDataChart
* dataSource={this.state.dataSource} >
*
* <IgrCategoryXAxis name="xAxis" />
* <IgrNumericYAxis name="yAxis"
* scaleMode="logarithmic" />
*
* <IgrLineSeries
* name="series1"
* xAxisName="xAxis"
* yAxisName="yAxis"
* valueMemberPath="Value" />
* </IgrDataChart>
* ```
*/
get scaleMode() {
return this.i.r4;
}
set scaleMode(v) {
this.i.r4 = ensureEnum(NumericScaleMode_$type, v);
}
}