瀏覽代碼

no message

reset-do-picking-order
kelvin.yau 1 周之前
父節點
當前提交
5e4c8c46e7
共有 2 個文件被更改,包括 4 次插入4 次删除
  1. +2
    -2
      src/app/(main)/chart/delivery/page.tsx
  2. +2
    -2
      src/app/(main)/chart/warehouse/page.tsx

+ 2
- 2
src/app/(main)/chart/delivery/page.tsx 查看文件

@@ -361,12 +361,12 @@ export default function DeliveryChartPage() {
</Typography>
<ApexCharts
options={{
chart: { type: "bar" },
chart: { type: "bar", stacked: true },
xaxis: {
categories: Array.from(new Set(chartData.staffPerf.map((r) => r.date))).sort(),
},
yaxis: { title: { text: "單數" } },
plotOptions: { bar: { columnWidth: "60%", stacked: true } },
plotOptions: { bar: { columnWidth: "60%" } },
dataLabels: { enabled: false },
legend: { position: "top" },
}}


+ 2
- 2
src/app/(main)/chart/warehouse/page.tsx 查看文件

@@ -329,10 +329,10 @@ export default function WarehouseChartPage() {
) : chartData.consumptionByItems ? (
<ApexCharts
options={{
chart: { type: "bar" },
chart: { type: "bar", stacked: false },
xaxis: { categories: chartData.consumptionByItems.months },
yaxis: { title: { text: "出庫量" } },
plotOptions: { bar: { columnWidth: "60%", stacked: false } },
plotOptions: { bar: { columnWidth: "60%" } },
dataLabels: { enabled: false },
legend: { position: "top" },
}}


Loading…
取消
儲存