UNPKG

react-jsx-highcharts

Version:

Highcharts charts built using React components

11 lines (8 loc) 278 B
import * as React from 'react'; import Axis from '../Axis'; const ZAxis = ({ type = 'linear', ...restProps }) => ( <Axis type={type} {...restProps} id="zAxis" isX={false} dynamicAxis={false} /> ); ZAxis.displayName = 'ZAxis'; ZAxis.Title = Axis.Title; export default ZAxis;