react-jsx-highcharts
Version:
Highcharts charts built using React components
16 lines • 352 B
JavaScript
import * as React from 'react';
import Axis from '../Axis';
import { jsx as _jsx } from "react/jsx-runtime";
const ZAxis = ({
type = 'linear',
...restProps
}) => /*#__PURE__*/_jsx(Axis, {
type: type,
...restProps,
id: "zAxis",
isX: false,
dynamicAxis: false
});
ZAxis.displayName = 'ZAxis';
ZAxis.Title = Axis.Title;
export default ZAxis;