This commit is contained in:
Wikzyy
2025-02-21 11:31:16 +07:00
parent 2a74922621
commit d1b95189dc
2 changed files with 6 additions and 137 deletions

View File

@ -6,7 +6,7 @@ export const staticChartData = {
{
x: 'Jan 01',
y: 50
},
}
]
},
{
@ -54,136 +54,3 @@ export const staticChartData = {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
}
};
// const staticChartData = {
// series: [
// {
// name: 'Sales',
// data: [
// {
// x: 'Jan',
// y: 20
// }
// ]
// },
// {
// name: 'Orders',
// data: [
// {
// x: 'Feb',
// y: 32
// }
// ]
// },
// {
// data: [
// {
// x: 'Mar',
// y: 41
// }
// ]
// },
// {
// data: [
// {
// x: 'Apr',
// y: 38
// }
// ]
// },
// {
// data: [
// {
// x: 'May',
// y: 50
// }
// ]
// },
// {
// data: [
// {
// x: 'Jun',
// y: 47
// }
// ]
// },
// {
// data: [
// {
// x: 'Jul',
// y: 62
// }
// ]
// },
// {
// data: [
// {
// x: 'Aug',
// y: 51
// }
// ]
// },
// {
// data: [
// {
// x: 'Sep',
// y: 25
// }
// ]
// },
// {
// data: [
// {
// x: 'Oct',
// y: 72
// }
// ]
// },
// {
// data: [
// {
// x: 'Nov',
// y: 70
// }
// ]
// },
// {
// data: [
// {
// x: 'Des',
// y: 100
// }
// ]
// },
// ],
// options: {
// chart: {
// type: chartType,
// height: 350
// },
// title: {
// text: 'Overview',
// align: 'center'
// },
// xaxis: {
// categories: [
// 'Jan',
// 'Feb',
// 'Mar',
// 'Apr',
// 'May',
// 'Jun',
// 'Jul',
// 'Aug',
// 'Sep',
// 'Oct',
// 'Nov',
// 'Dec'
// ]
// },
// legend: {
// show: chartLegend === 'true'
// }
// }
// };