Create progress stacked bar chart
This commit is contained in:
@@ -319,7 +319,7 @@ export default function RunEditor({ projectId, runId }: Props) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mt-3 flex rounded-small border-2 dark:border-neutral-700">
|
<div className="mt-3 flex rounded-small border-2 dark:border-neutral-700 mb-12">
|
||||||
<div className="w-3/12 border-r-1 dark:border-neutral-700">
|
<div className="w-3/12 border-r-1 dark:border-neutral-700">
|
||||||
<Listbox aria-label="Listbox Variants" variant="light">
|
<Listbox aria-label="Listbox Variants" variant="light">
|
||||||
{folders.map((folder, index) => (
|
{folders.map((folder, index) => (
|
||||||
|
|||||||
@@ -62,6 +62,11 @@ export default function RunProgressChart() {
|
|||||||
left: -20,
|
left: -20,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
tooltip: {
|
||||||
|
x: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
return (
|
return (
|
||||||
@@ -72,7 +77,7 @@ export default function RunProgressChart() {
|
|||||||
series={chartData.series}
|
series={chartData.series}
|
||||||
type="bar"
|
type="bar"
|
||||||
width={500}
|
width={500}
|
||||||
height={100}
|
height={80}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user