index.d.ts 356 Bytes
Newer Older
陈小聪's avatar
陈小聪 committed
1
import React from 'react';
jim's avatar
jim committed
2
export interface IRadarProps {
陈帅's avatar
陈帅 committed
3
  title?: React.ReactNode;
4
  height: number;
niko's avatar
niko committed
5
  padding?: [number, number, number, number];
6 7 8 9 10 11
  hasLegend?: boolean;
  data: Array<{
    name: string;
    label: string;
    value: string;
  }>;
jim's avatar
jim committed
12
  style?: React.CSSProperties;
13 14
}

jim's avatar
jim committed
15
export default class Radar extends React.Component<IRadarProps, any> {}