40cffb3beb
TaxBaik CI/CD / build-and-deploy (push) Successful in 2m26s
Problem: JavaScript login form saved tokens to localStorage but didn't notify CustomAuthenticationStateProvider, causing [Authorize] pages to remain in 'loading' state indefinitely. The provider only reads tokens when: 1. GetAuthenticationStateAsync() is called (page load) 2. NotifyAuthenticationStateChanged() is triggered (UI updates) But JavaScript login didn't trigger either, leaving the authentication state stale. Solution: Convert AdminLoginForm from HTML+JavaScript to pure Blazor component. Now the login flow is: 1. User enters credentials in Blazor form 2. HttpClient POST to /api/auth/login 3. Save tokens to localStorage 4. Call CustomAuthenticationStateProvider.LoginAsync() directly 5. Blazor detects auth state change and re-evaluates [Authorize] pages 6. Dashboard [Authorize] page renders successfully Result: Immediate authentication state update, no loading timeout on protected pages. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
770 lines
26 KiB
JavaScript
770 lines
26 KiB
JavaScript
import ApexCharts from '../thirdparty/apexchartsWrapper.js';
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
'use strict';
|
|
|
|
// Line and Column Chart
|
|
if (document.getElementById('line-column-chart')) {
|
|
const lineColumnOptions = {
|
|
series: [{
|
|
name: 'Website',
|
|
type: 'column',
|
|
data: [440, 505, 414, 671, 227, 413, 201, 352, 752, 320, 257, 160]
|
|
}, {
|
|
name: 'Social Media',
|
|
type: 'line',
|
|
data: [23, 42, 35, 27, 43, 22, 17, 31, 22, 22, 12, 16]
|
|
}],
|
|
chart: {
|
|
height: 350,
|
|
type: 'line',
|
|
toolbar: {
|
|
show: true
|
|
}
|
|
},
|
|
stroke: {
|
|
width: [0, 4]
|
|
},
|
|
title: {
|
|
text: 'Traffic Sources',
|
|
align: 'left',
|
|
style: {
|
|
color: window.colorMap.bootstrapVars.bodyColor.hex
|
|
}
|
|
},
|
|
dataLabels: {
|
|
enabled: true,
|
|
enabledOnSeries: [1]
|
|
},
|
|
labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
|
xaxis: {
|
|
type: 'category',
|
|
},
|
|
yaxis: [{
|
|
title: {
|
|
text: 'Website Visits',
|
|
style: {
|
|
color: window.colorMap.bootstrapVars.bodyColor.hex
|
|
}
|
|
},
|
|
labels: {
|
|
style: {
|
|
colors: window.colorMap.bootstrapVars.bodyColor.hex
|
|
}
|
|
}
|
|
}, {
|
|
opposite: true,
|
|
title: {
|
|
text: 'Social Media',
|
|
style: {
|
|
color: window.colorMap.bootstrapVars.bodyColor.hex
|
|
}
|
|
},
|
|
labels: {
|
|
style: {
|
|
colors: window.colorMap.bootstrapVars.bodyColor.hex
|
|
}
|
|
}
|
|
}],
|
|
colors: [window.colorMap.primary[500].hex, window.colorMap.danger[500].hex],
|
|
grid: {
|
|
show: true,
|
|
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
|
|
strokeDashArray: 5,
|
|
position: 'back',
|
|
xaxis: {
|
|
lines: {
|
|
show: false
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
const lineColumnChart = new ApexCharts(
|
|
document.getElementById('line-column-chart'),
|
|
lineColumnOptions
|
|
);
|
|
lineColumnChart.render();
|
|
}
|
|
|
|
// Multiple Y-Axis Chart
|
|
if (document.getElementById('multiple-y-axis-chart')) {
|
|
const multipleYAxisOptions = {
|
|
series: [{
|
|
name: 'Income',
|
|
type: 'column',
|
|
data: [1.4, 2.1, 4.9, 6.5, 8.2, 7.1, 5.6, 4.2, 3.5, 2.8, 2.3, 1.8]
|
|
}, {
|
|
name: 'Cashflow',
|
|
type: 'column',
|
|
data: [1.1, 3.2, 4.3, 5.8, 8.4, 6.5, 4.9, 3.9, 3.1, 2.5, 2.0, 1.5]
|
|
}, {
|
|
name: 'Revenue',
|
|
type: 'line',
|
|
data: [20, 29, 37, 46, 56, 42, 35, 30, 25, 22, 17, 15]
|
|
}],
|
|
chart: {
|
|
height: 350,
|
|
type: 'line',
|
|
stacked: false,
|
|
toolbar: {
|
|
show: true
|
|
}
|
|
},
|
|
dataLabels: {
|
|
enabled: false
|
|
},
|
|
stroke: {
|
|
width: [1, 1, 4]
|
|
},
|
|
title: {
|
|
text: 'Financial Overview (Multiple Y-axis)',
|
|
align: 'left',
|
|
},
|
|
xaxis: {
|
|
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
|
},
|
|
yaxis: [
|
|
{
|
|
axisTicks: {
|
|
show: true,
|
|
},
|
|
axisBorder: {
|
|
show: true,
|
|
color: window.colorMap.primary[500].hex
|
|
},
|
|
labels: {
|
|
style: {
|
|
colors: window.colorMap.primary[500].hex,
|
|
}
|
|
},
|
|
title: {
|
|
text: "Income (thousand $)",
|
|
style: {
|
|
color: window.colorMap.primary[500].hex,
|
|
}
|
|
},
|
|
tooltip: {
|
|
enabled: true
|
|
}
|
|
},
|
|
{
|
|
seriesName: 'Income',
|
|
opposite: true,
|
|
axisTicks: {
|
|
show: true,
|
|
},
|
|
axisBorder: {
|
|
show: true,
|
|
color: window.colorMap.primary[300].hex
|
|
},
|
|
labels: {
|
|
style: {
|
|
colors: window.colorMap.primary[300].hex,
|
|
}
|
|
},
|
|
title: {
|
|
text: "Cashflow (thousand $)",
|
|
style: {
|
|
color: window.colorMap.primary[300].hex,
|
|
}
|
|
},
|
|
},
|
|
{
|
|
seriesName: 'Revenue',
|
|
opposite: true,
|
|
axisTicks: {
|
|
show: true,
|
|
},
|
|
axisBorder: {
|
|
show: true,
|
|
color: window.colorMap.danger[500].hex
|
|
},
|
|
labels: {
|
|
style: {
|
|
colors: window.colorMap.danger[500].hex,
|
|
},
|
|
},
|
|
title: {
|
|
text: "Revenue (thousand $)",
|
|
style: {
|
|
color: window.colorMap.danger[500].hex,
|
|
}
|
|
}
|
|
},
|
|
],
|
|
tooltip: {
|
|
y: {
|
|
formatter: function (val) {
|
|
return val + " thousand $";
|
|
}
|
|
}
|
|
},
|
|
legend: {
|
|
horizontalAlign: 'center',
|
|
position: 'bottom',
|
|
},
|
|
colors: [window.colorMap.primary[500].hex, window.colorMap.primary[300].hex, window.colorMap.danger[500].hex],
|
|
grid: {
|
|
show: true,
|
|
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
|
|
strokeDashArray: 5,
|
|
position: 'back',
|
|
xaxis: {
|
|
lines: {
|
|
show: false
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
const multipleYAxisChart = new ApexCharts(
|
|
document.getElementById('multiple-y-axis-chart'),
|
|
multipleYAxisOptions
|
|
);
|
|
multipleYAxisChart.render();
|
|
}
|
|
|
|
// Line and Area Chart
|
|
if (document.getElementById('line-area-chart')) {
|
|
const lineAreaOptions = {
|
|
series: [{
|
|
name: 'TEAM A',
|
|
type: 'area',
|
|
data: [44, 55, 31, 47, 31, 43, 26, 41, 31, 47, 33]
|
|
}, {
|
|
name: 'TEAM B',
|
|
type: 'line',
|
|
data: [55, 69, 45, 61, 43, 54, 37, 52, 44, 61, 43]
|
|
}],
|
|
chart: {
|
|
height: 350,
|
|
type: 'line',
|
|
toolbar: {
|
|
show: true
|
|
}
|
|
},
|
|
stroke: {
|
|
curve: 'smooth',
|
|
width: [3, 3]
|
|
},
|
|
fill: {
|
|
type: ['gradient', 'solid'],
|
|
opacity: [0.35, 1],
|
|
gradient: {
|
|
shade: 'light',
|
|
type: 'vertical',
|
|
shadeIntensity: 0.4,
|
|
gradientToColors: [window.colorMap.bootstrapVars.bodyBg.hex],
|
|
inverseColors: false,
|
|
opacityFrom: 0.7,
|
|
opacityTo: 0.2,
|
|
stops: [0, 100]
|
|
}
|
|
},
|
|
labels: ['Dec 01', 'Dec 02', 'Dec 03', 'Dec 04', 'Dec 05', 'Dec 06', 'Dec 07', 'Dec 08', 'Dec 09', 'Dec 10', 'Dec 11'],
|
|
markers: {
|
|
size: 0
|
|
},
|
|
title: {
|
|
text: 'Team Performance',
|
|
align: 'left',
|
|
},
|
|
yaxis: [
|
|
{
|
|
title: {
|
|
text: 'Series A',
|
|
style: {
|
|
color: window.colorMap.bootstrapVars.bodyColor.hex
|
|
}
|
|
},
|
|
labels: {
|
|
style: {
|
|
colors: window.colorMap.bootstrapVars.bodyColor.hex
|
|
}
|
|
},
|
|
},
|
|
{
|
|
opposite: true,
|
|
title: {
|
|
text: 'Series B',
|
|
style: {
|
|
color: window.colorMap.bootstrapVars.bodyColor.hex
|
|
}
|
|
},
|
|
labels: {
|
|
style: {
|
|
colors: window.colorMap.bootstrapVars.bodyColor.hex
|
|
}
|
|
},
|
|
},
|
|
],
|
|
tooltip: {
|
|
theme: 'dark',
|
|
shared: true,
|
|
intersect: false,
|
|
y: {
|
|
formatter: function (val) {
|
|
return val.toFixed(0) + " points";
|
|
}
|
|
}
|
|
},
|
|
legend: {
|
|
position: 'bottom',
|
|
horizontalAlign: 'center',
|
|
},
|
|
colors: [window.colorMap.primary[500].hex, window.colorMap.danger[500].hex],
|
|
grid: {
|
|
show: true,
|
|
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
|
|
strokeDashArray: 5,
|
|
position: 'back',
|
|
xaxis: {
|
|
lines: {
|
|
show: false
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
const lineAreaChart = new ApexCharts(
|
|
document.getElementById('line-area-chart'),
|
|
lineAreaOptions
|
|
);
|
|
lineAreaChart.render();
|
|
}
|
|
|
|
// Line Column Area Chart
|
|
if (document.getElementById('line-column-area-chart')) {
|
|
const lineColumnAreaOptions = {
|
|
series: [{
|
|
name: 'Revenue',
|
|
type: 'column',
|
|
data: [1.4, 2.3, 3.5, 4.2, 5.1, 4.3, 3.8, 3.2, 2.9, 3.5, 4.2, 4.8]
|
|
}, {
|
|
name: 'Free Cash Flow',
|
|
type: 'area',
|
|
data: [0.9, 1.5, 2.2, 3.1, 3.8, 3.5, 3.2, 2.8, 2.5, 2.9, 3.5, 4.0]
|
|
}, {
|
|
name: 'Operating Margin',
|
|
type: 'line',
|
|
data: [15, 18, 20, 22, 25, 23, 21, 19, 20, 22, 24, 26]
|
|
}],
|
|
chart: {
|
|
height: 350,
|
|
type: 'line',
|
|
stacked: false,
|
|
toolbar: {
|
|
show: true
|
|
}
|
|
},
|
|
stroke: {
|
|
width: [0, 2, 4],
|
|
curve: 'smooth'
|
|
},
|
|
plotOptions: {
|
|
bar: {
|
|
columnWidth: '50%'
|
|
}
|
|
},
|
|
fill: {
|
|
type: ['solid', 'gradient', 'solid'],
|
|
opacity: [0.85, 0.25, 1],
|
|
gradient: {
|
|
shade: 'light',
|
|
type: 'vertical',
|
|
shadeIntensity: 0.4,
|
|
gradientToColors: [window.colorMap.bootstrapVars.bodyBg.hex],
|
|
inverseColors: false,
|
|
opacityFrom: 0.7,
|
|
opacityTo: 0.2,
|
|
stops: [0, 100]
|
|
}
|
|
},
|
|
markers: {
|
|
size: 0
|
|
},
|
|
xaxis: {
|
|
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
|
},
|
|
yaxis: [
|
|
{
|
|
title: {
|
|
text: 'Revenue (billions)',
|
|
style: {
|
|
color: window.colorMap.primary[500].hex
|
|
}
|
|
},
|
|
labels: {
|
|
formatter: function(val) {
|
|
return '$' + val.toFixed(1) + 'B';
|
|
},
|
|
style: {
|
|
colors: window.colorMap.primary[500].hex
|
|
}
|
|
}
|
|
},
|
|
{
|
|
seriesName: 'Free Cash Flow',
|
|
title: {
|
|
text: 'Free Cash Flow (billions)',
|
|
style: {
|
|
color: window.colorMap.primary[300].hex
|
|
}
|
|
},
|
|
opposite: true,
|
|
labels: {
|
|
formatter: function(val) {
|
|
return '$' + val.toFixed(1) + 'B';
|
|
},
|
|
style: {
|
|
colors: window.colorMap.primary[300].hex
|
|
}
|
|
}
|
|
},
|
|
{
|
|
seriesName: 'Operating Margin',
|
|
title: {
|
|
text: 'Operating Margin (%)',
|
|
style: {
|
|
color: window.colorMap.danger[500].hex
|
|
}
|
|
},
|
|
opposite: true,
|
|
labels: {
|
|
formatter: function(val) {
|
|
return val.toFixed(0) + '%';
|
|
},
|
|
style: {
|
|
colors: window.colorMap.danger[500].hex
|
|
}
|
|
}
|
|
}
|
|
],
|
|
tooltip: {
|
|
shared: true,
|
|
intersect: false,
|
|
y: [
|
|
{
|
|
formatter: function(y) {
|
|
if (typeof y !== "undefined") {
|
|
return '$' + y.toFixed(2) + ' billion';
|
|
}
|
|
return y;
|
|
}
|
|
},
|
|
{
|
|
formatter: function(y) {
|
|
if (typeof y !== "undefined") {
|
|
return '$' + y.toFixed(2) + ' billion';
|
|
}
|
|
return y;
|
|
}
|
|
},
|
|
{
|
|
formatter: function(y) {
|
|
if (typeof y !== "undefined") {
|
|
return y.toFixed(1) + '%';
|
|
}
|
|
return y;
|
|
}
|
|
}
|
|
]
|
|
},
|
|
title: {
|
|
text: 'Financial Performance Overview',
|
|
align: 'left',
|
|
},
|
|
legend: {
|
|
position: 'bottom',
|
|
horizontalAlign: 'center',
|
|
},
|
|
colors: [window.colorMap.primary[500].hex, window.colorMap.primary[300].hex, window.colorMap.danger[500].hex],
|
|
grid: {
|
|
show: true,
|
|
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
|
|
strokeDashArray: 5,
|
|
position: 'back',
|
|
xaxis: {
|
|
lines: {
|
|
show: false
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
const lineColumnAreaChart = new ApexCharts(
|
|
document.getElementById('line-column-area-chart'),
|
|
lineColumnAreaOptions
|
|
);
|
|
lineColumnAreaChart.render();
|
|
}
|
|
|
|
// Candlestick Line Chart
|
|
if (document.getElementById('candlestick-line-chart')) {
|
|
const candlestickLineOptions = {
|
|
series: [{
|
|
name: 'Candle',
|
|
type: 'candlestick',
|
|
data: [
|
|
{ x: new Date(2016, 1, 1), y: [51.98, 56.29, 51.59, 53.85] },
|
|
{ x: new Date(2016, 2, 1), y: [53.66, 54.99, 51.35, 52.95] },
|
|
{ x: new Date(2016, 3, 1), y: [52.96, 53.78, 51.54, 52.48] },
|
|
{ x: new Date(2016, 4, 1), y: [52.54, 52.79, 47.88, 49.24] },
|
|
{ x: new Date(2016, 5, 1), y: [49.10, 52.86, 47.70, 52.78] },
|
|
{ x: new Date(2016, 6, 1), y: [52.83, 53.48, 50.32, 52.29] },
|
|
{ x: new Date(2016, 7, 1), y: [52.20, 54.48, 51.64, 52.58] },
|
|
{ x: new Date(2016, 8, 1), y: [52.76, 57.35, 52.15, 57.03] },
|
|
{ x: new Date(2016, 9, 1), y: [57.04, 58.15, 48.88, 56.19] },
|
|
{ x: new Date(2016, 10, 1), y: [56.09, 58.85, 55.48, 58.79] },
|
|
{ x: new Date(2016, 11, 1), y: [58.78, 59.65, 58.23, 59.05] },
|
|
{ x: new Date(2017, 0, 1), y: [59.37, 61.11, 59.35, 60.34] },
|
|
{ x: new Date(2017, 1, 1), y: [60.40, 60.52, 56.71, 56.93] },
|
|
{ x: new Date(2017, 2, 1), y: [57.02, 59.71, 56.04, 56.82] },
|
|
{ x: new Date(2017, 3, 1), y: [56.97, 59.62, 54.77, 59.30] },
|
|
{ x: new Date(2017, 4, 1), y: [59.11, 62.29, 59.10, 59.85] }
|
|
]
|
|
}, {
|
|
name: 'Moving Average',
|
|
type: 'line',
|
|
data: [
|
|
{ x: new Date(2016, 1, 1), y: 53.85 },
|
|
{ x: new Date(2016, 2, 1), y: 53.40 },
|
|
{ x: new Date(2016, 3, 1), y: 52.93 },
|
|
{ x: new Date(2016, 4, 1), y: 51.08 },
|
|
{ x: new Date(2016, 5, 1), y: 51.94 },
|
|
{ x: new Date(2016, 6, 1), y: 52.05 },
|
|
{ x: new Date(2016, 7, 1), y: 52.32 },
|
|
{ x: new Date(2016, 8, 1), y: 54.71 },
|
|
{ x: new Date(2016, 9, 1), y: 55.44 },
|
|
{ x: new Date(2016, 10, 1), y: 57.14 },
|
|
{ x: new Date(2016, 11, 1), y: 58.02 },
|
|
{ x: new Date(2017, 0, 1), y: 59.17 },
|
|
{ x: new Date(2017, 1, 1), y: 58.63 },
|
|
{ x: new Date(2017, 2, 1), y: 56.93 },
|
|
{ x: new Date(2017, 3, 1), y: 57.41 },
|
|
{ x: new Date(2017, 4, 1), y: 59.63 }
|
|
]
|
|
}],
|
|
chart: {
|
|
height: 350,
|
|
type: 'line',
|
|
toolbar: {
|
|
show: true
|
|
}
|
|
},
|
|
title: {
|
|
text: 'Stock Market Analysis',
|
|
align: 'left',
|
|
},
|
|
stroke: {
|
|
width: [0, 3]
|
|
},
|
|
xaxis: {
|
|
type: 'datetime'
|
|
},
|
|
yaxis: {
|
|
tooltip: {
|
|
enabled: true
|
|
},
|
|
labels: {
|
|
formatter: function(val) {
|
|
return '$' + val.toFixed(2);
|
|
}
|
|
}
|
|
},
|
|
tooltip: {
|
|
shared: true,
|
|
custom: [{
|
|
seriesIndex: 0,
|
|
formatter: function(opts) {
|
|
const data = opts.ctx.w.globals.initialSeries[opts.seriesIndex].data[opts.dataPointIndex];
|
|
return `
|
|
<div class="p-2">
|
|
<div>Date: ${new Date(data.x).toLocaleDateString()}</div>
|
|
<div>Open: $${data.y[0].toFixed(2)}</div>
|
|
<div>High: $${data.y[1].toFixed(2)}</div>
|
|
<div>Low: $${data.y[2].toFixed(2)}</div>
|
|
<div>Close: $${data.y[3].toFixed(2)}</div>
|
|
</div>
|
|
`;
|
|
}
|
|
}, {
|
|
seriesIndex: 1,
|
|
formatter: function(opts) {
|
|
const data = opts.ctx.w.globals.initialSeries[opts.seriesIndex].data[opts.dataPointIndex];
|
|
return `
|
|
<div class="p-2">
|
|
<div>Date: ${new Date(data.x).toLocaleDateString()}</div>
|
|
<div>MA: $${data.y.toFixed(2)}</div>
|
|
</div>
|
|
`;
|
|
}
|
|
}],
|
|
},
|
|
plotOptions: {
|
|
candlestick: {
|
|
colors: {
|
|
upward: window.colorMap.primary[500].hex,
|
|
downward: window.colorMap.danger[500].hex
|
|
}
|
|
}
|
|
},
|
|
colors: [window.colorMap.primary[500].hex, window.colorMap.danger[500].hex],
|
|
grid: {
|
|
show: true,
|
|
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
|
|
strokeDashArray: 5,
|
|
position: 'back',
|
|
xaxis: {
|
|
lines: {
|
|
show: false
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
const candlestickLineChart = new ApexCharts(
|
|
document.getElementById('candlestick-line-chart'),
|
|
candlestickLineOptions
|
|
);
|
|
candlestickLineChart.render();
|
|
}
|
|
|
|
// Line Scatter Chart
|
|
if (document.getElementById('line-scatter-chart')) {
|
|
// Generate sample data for the scatter plot
|
|
const generateScatterData = (count, min, max) => {
|
|
const data = [];
|
|
for (let i = 0; i < count; i++) {
|
|
const x = min + Math.random() * (max - min);
|
|
const y = min + Math.random() * (max - min);
|
|
data.push({ x, y });
|
|
}
|
|
return data;
|
|
};
|
|
|
|
const lineScatterOptions = {
|
|
series: [{
|
|
name: 'Trend Line',
|
|
type: 'line',
|
|
data: [
|
|
{ x: 0, y: 2 },
|
|
{ x: 1, y: 3 },
|
|
{ x: 2, y: 5 },
|
|
{ x: 3, y: 6 },
|
|
{ x: 4, y: 8 },
|
|
{ x: 5, y: 9 },
|
|
{ x: 6, y: 11 },
|
|
{ x: 7, y: 12 },
|
|
{ x: 8, y: 14 },
|
|
{ x: 9, y: 15 },
|
|
{ x: 10, y: 16 }
|
|
]
|
|
}, {
|
|
name: 'Group A',
|
|
type: 'scatter',
|
|
data: generateScatterData(20, 0, 5)
|
|
}, {
|
|
name: 'Group B',
|
|
type: 'scatter',
|
|
data: generateScatterData(15, 3, 8)
|
|
}, {
|
|
name: 'Group C',
|
|
type: 'scatter',
|
|
data: generateScatterData(10, 6, 10)
|
|
}],
|
|
chart: {
|
|
height: 350,
|
|
type: 'line',
|
|
toolbar: {
|
|
show: true
|
|
},
|
|
zoom: {
|
|
enabled: true,
|
|
type: 'xy'
|
|
}
|
|
},
|
|
stroke: {
|
|
width: [3, 0, 0, 0],
|
|
curve: 'straight'
|
|
},
|
|
fill: {
|
|
opacity: [1, 0.7, 0.7, 0.7]
|
|
},
|
|
markers: {
|
|
size: [0, 6, 6, 6],
|
|
hover: {
|
|
size: 8
|
|
}
|
|
},
|
|
title: {
|
|
text: 'Line and Scatter Combination',
|
|
align: 'left',
|
|
},
|
|
subtitle: {
|
|
text: 'Linear Trend with Data Points',
|
|
align: 'left',
|
|
},
|
|
xaxis: {
|
|
type: 'numeric',
|
|
min: 0,
|
|
max: 10,
|
|
tickAmount: 10,
|
|
title: {
|
|
text: 'X Axis',
|
|
},
|
|
},
|
|
yaxis: {
|
|
min: 0,
|
|
max: 20,
|
|
title: {
|
|
text: 'Y Axis',
|
|
},
|
|
labels: {
|
|
formatter: function(val) {
|
|
return val.toFixed(1);
|
|
},
|
|
}
|
|
},
|
|
tooltip: {
|
|
shared: false,
|
|
intersect: true,
|
|
x: {
|
|
show: true,
|
|
format: '0.0'
|
|
},
|
|
y: {
|
|
formatter: function(val) {
|
|
return val.toFixed(2);
|
|
}
|
|
},
|
|
marker: {
|
|
show: true
|
|
}
|
|
},
|
|
legend: {
|
|
position: 'bottom',
|
|
horizontalAlign: 'center',
|
|
},
|
|
grid: {
|
|
show: true,
|
|
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
|
|
strokeDashArray: 5,
|
|
position: 'back',
|
|
xaxis: {
|
|
lines: {
|
|
show: false
|
|
}
|
|
}
|
|
},
|
|
colors: [window.colorMap.primary[500].hex, window.colorMap.primary[300].hex, window.colorMap.primary[200].hex, window.colorMap.danger[500].hex]
|
|
};
|
|
|
|
const lineScatterChart = new ApexCharts(
|
|
document.getElementById('line-scatter-chart'),
|
|
lineScatterOptions
|
|
);
|
|
lineScatterChart.render();
|
|
}
|
|
});
|