From 81cd11bcbddb7f68a4231ac669f0fed5e8c03371 Mon Sep 17 00:00:00 2001 From: Lei Wang Date: Wed, 15 Jan 2025 18:09:36 +0800 Subject: [PATCH] fix material bar chart's stack option Change option `isStacked` to `stacked` --- apps/docs/docs/examples/bar-chart-material.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/docs/docs/examples/bar-chart-material.mdx b/apps/docs/docs/examples/bar-chart-material.mdx index 97717989..48975eb1 100644 --- a/apps/docs/docs/examples/bar-chart-material.mdx +++ b/apps/docs/docs/examples/bar-chart-material.mdx @@ -168,11 +168,11 @@ const options = { ### Stacked Bar Chart -To stack the bars, set the `isStacked` option to `true`: +To stack the bars, set the `stacked` option to `true`: ```jsx const options = { - isStacked: true, + stacked: true, chart: { title: "Company Performance", subtitle: "Sales and Expenses over the Years",