Properties
Charts

Charts


Properties

export type Charts = {
  title?: ViewText;
  subject?: ViewText;
  iconColor?: CSSProperties["fill"];
  labels?: ChartLabels;
  grid?: ChartGrid;
  axis?: ChartAxis;
};
 
export type ChartLabels = {
  color?: CSSProperties["color"];
  fontWeight?: CSSProperties["fontWeight"];
  fontSize?: CSSProperties["fontSize"];
};
 
export type ChartGrid = {
  stroke: CSSProperties["stroke"];
};
 
export type ChartAxis = {
  stroke: CSSProperties["stroke"];
};