83 lines
1.9 KiB
JavaScript
83 lines
1.9 KiB
JavaScript
import React, { Component } from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import dynamic from "next/dynamic";
|
|
const Chart = dynamic(() => import("react-apexcharts"), {
|
|
ssr: false,
|
|
});
|
|
|
|
class MultipleRadialbars extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
series: [44, 55, 67, 83],
|
|
options: {
|
|
chart: {
|
|
height: 350,
|
|
type: "radialBar",
|
|
},
|
|
plotOptions: {
|
|
radialBar: {
|
|
dataLabels: {
|
|
name: {
|
|
fontSize: "22px",
|
|
},
|
|
value: {
|
|
fontSize: "16px",
|
|
},
|
|
total: {
|
|
show: true,
|
|
label: "Total",
|
|
formatter: function (w) {
|
|
// By default this function returns the average of all series. The below is just an example to show the use of custom formatter function
|
|
return 249;
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
labels: ["Apples", "Oranges", "Bananas", "Berries"],
|
|
},
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
borderBottom: "1px solid #EEF0F7",
|
|
paddingBottom: "5px",
|
|
mb: "15px",
|
|
}}
|
|
className="for-dark-bottom-border"
|
|
>
|
|
Multiple Radialbars
|
|
</Typography>
|
|
|
|
<Chart
|
|
options={this.state.options}
|
|
series={this.state.series}
|
|
type="radialBar"
|
|
height={350}
|
|
/>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default MultipleRadialbars;
|