Basic Example
The YAxis component provides a vertical axis for charts with automatic tick generation and labeling.
Axis Config
Properties related to the scale of an axis are set on the Chart component. This includes scaleType, domain, domainLimit, range, data, and categoryPadding.
Scale Type
YAxis supports linear (default) and log scale types. Both linear and log are numeric scales.
Domain
An axis's domain is the range of values that the axis will display.
You can pass in either an object (AxisBounds) with min and max properties (both optional), or a function that receives initial AxisBounds and returns an adjusted AxisBounds.