import { Axis, AxisProps, Chart, Geom, Tooltip } from 'bizcharts'; import React from 'react'; import autoHeight from '../autoHeight'; import styles from '../index.less'; export interface MiniAreaProps { color?: string; height?: number; borderColor?: string; line?: boolean; animate?: boolean; xAxis?: AxisProps; forceFit?: boolean; scale?: { x?: { tickCount: number; }; y?: { tickCount: number; }; }; yAxis?: Partial; borderWidth?: number; data: { x: number | string; y: number; }[]; } // g2 4.0 发布之前只能这样先修一下了 const FixTypeAxis: any = Axis; const MiniArea: React.FC = props => { const { height = 1, data = [], forceFit = true, color = 'rgba(24, 144, 255, 0.2)', borderColor = '#1089ff', scale = { x: {}, y: {} }, borderWidth = 2, line, xAxis, yAxis, animate = true, } = props; const padding: [number, number, number, number] = [36, 5, 30, 5]; const scaleProps = { x: { type: 'cat', range: [0, 1], ...scale.x, }, y: { min: 0, ...scale.y, }, }; const tooltip: [string, (...args: any[]) => { name?: string; value: string }] = [ 'x*y', (x: string, y: string) => ({ name: x, value: y, }), ]; const chartHeight = height + 54; return (
{height > 0 && ( {line ? ( ) : ( )} )}
); }; export default autoHeight()(MiniArea);