forked from apexcharts/apexcharts.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix apexcharts#4809 heatmap: align different ticks and gaps in timese…
…ries
- Loading branch information
1 parent
b9c58d7
commit 4f8c9ee
Showing
8 changed files
with
166 additions
and
33 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
<title>Simple HeatMap</title> | ||
|
||
<link href="../../assets/styles.css" rel="stylesheet" /> | ||
|
||
<style> | ||
|
||
#chart, #chart2 { | ||
max-width: 650px; | ||
margin: 35px auto; | ||
} | ||
|
||
</style> | ||
|
||
<script> | ||
window.Promise || | ||
document.write( | ||
'<script src="https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.min.js"><\/script>' | ||
) | ||
window.Promise || | ||
document.write( | ||
'<script src="https://cdn.jsdelivr.net/npm/eligrey-classlist-js-polyfill@1.2.20171210/classList.min.js"><\/script>' | ||
) | ||
window.Promise || | ||
document.write( | ||
'<script src="https://cdn.jsdelivr.net/npm/findindex_polyfill_mdn"><\/script>' | ||
) | ||
</script> | ||
|
||
|
||
<script src="../../../dist/apexcharts.js"></script> | ||
|
||
</head> | ||
|
||
<body> | ||
<div id="chart"></div> | ||
<div id="chart2"></div> | ||
|
||
<script> | ||
// A 24 hour time interval | ||
const end = new Date("2022-11-11T22:30:00.000Z").getTime(); | ||
const start = end - 12 * 60 * 60 * 1000; | ||
|
||
const timeSeries = () => { | ||
let series = []; | ||
for (let i = start; i < end; i += 30 * 60 * 1000) { | ||
series.push({ | ||
x: (new Date(i).getTime()), | ||
y: Math.floor(Math.random() * 100).toFixed(0), | ||
}); | ||
} | ||
return series; | ||
}; | ||
let data1 = timeSeries() | ||
data1.splice(0,10) | ||
data1.splice(3,2) | ||
const data2 = timeSeries() | ||
data2.splice(data2.length - 10,10); | ||
const data3 = timeSeries() | ||
let data = [ | ||
{ | ||
name: "Series 1", | ||
data: data1, | ||
}, | ||
{ | ||
name: "Series 2", | ||
data: data2, | ||
}, | ||
{ | ||
name: "Series 3", | ||
data: data3, | ||
}, | ||
]; | ||
|
||
var options = { | ||
chart: { | ||
height: 200, | ||
width: 630, | ||
type: "heatmap" | ||
}, | ||
tooltip: { | ||
x: { show: true, format: 'MMM dd HH:mm' }, | ||
}, | ||
xaxis: { | ||
labels: { | ||
datetimeFormatter: { | ||
year: 'yyyy', | ||
month: 'yyyy MMM', | ||
day: 'MMM dd', | ||
hour: 'HH:mm', | ||
}, | ||
}, | ||
type: 'datetime' | ||
}, | ||
series: data, | ||
}; | ||
|
||
const options2 = JSON.parse(JSON.stringify(options)) | ||
options2.chart.type = 'line' | ||
|
||
var chart = new ApexCharts(document.querySelector("#chart"), options); | ||
var chart2 = new ApexCharts(document.querySelector("#chart2"), options2); | ||
|
||
chart.render(); | ||
chart2.render(); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters