index.d.ts 359 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1
import * as React from "react";
2
export interface RadarProps {
陈帅'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 15
}

export default class Radar extends React.Component<RadarProps, any> {}