PieChart
PieChart
は、複数のデータを比較するためのパイチャートを描画するコンポーネントです。
テーマ
PieChart
は、複数パーツのコンポーネントです。
PieChart
は、LineChartのスタイルを継承しています。
コンポーネントのスタイルを変更したい場合は、こちらをご覧ください。
export const PieChart: ComponentMultiStyle<"PieChart"> = mergeMultiStyle(LineChart,{baseStyle: {activeShape: {},cell: {},inactiveShape: {},label: { fill: "currentColor", fillOpacity: 1 },labelLine: { stroke: "currentColor" },pie: {},},sizes: {sm: ({ theme: t, withLabels, withLegend }) => ({container: {h: calc.add(get(t, "sizes.3xs"), get(t, "sizes.1")),w: withLegend? "full": calc.add(get(t, "sizes.3xs"),withLabels ? get(t, "sizes.16") : "0px",),},label: {fontSize: "xs",},}),md: ({ theme: t, withLabels, withLegend }) => ({container: {h: "2xs",w: withLegend? "full": calc.add(get(t, "sizes.2xs"),withLabels ? get(t, "sizes.16") : "0px",),},label: {fontSize: "sm",},}),lg: ({ theme: t, withLabels, withLegend }) => ({container: {h: "xs",w: withLegend? "full": calc.add(get(t, "sizes.xs"),withLabels ? get(t, "sizes.16") : "0px",),},label: {fontSize: "md",},}),},defaultProps: {size: "md",},},)({ omit: ["line", "grid", "sizes.full"] })
GitHubでこのページを編集する