import React from 'react' import { Row, Col, Checkbox } from 'antd' import { onSectionChange } from './util' import { ISpecConfig } from '../types' import styles from '../../../Workbench.less' interface ISpecSectionDoubleYAxisProps { spec: ISpecConfig title: string onChange: (value: string | number, propPath: string | string[]) => void } function SpecSectionDoubleYAxis (props: ISpecSectionDoubleYAxisProps) { const { spec, title, onChange } = props const { smooth, step, symbol, label, stack } = spec return (

{title}

平滑 阶梯 节点标记 {/* 堆叠 */} 数值 堆叠
) } export default SpecSectionDoubleYAxis