baseddata.io/static/js/hashrate.js

109 lines
2.5 KiB
JavaScript
Raw Normal View History

2024-08-01 14:06:16 +01:00
let dataArr = [];
const myChart = echarts.init(document.getElementById("chart"));
2024-08-06 12:03:42 +01:00
async function fetchDataForChart() {
try {
2024-08-14 17:59:38 +01:00
const apiEndpoint = `${apiURL}/get_json/final__hashrate.json`;
2024-08-06 12:03:42 +01:00
const response = await fetch(apiEndpoint);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const dataArr = await response.json();
initEchart(dataArr);
} catch (error) {
console.error("Fetching data failed:", error);
}
}
2024-08-01 14:06:16 +01:00
2024-08-06 12:03:42 +01:00
function initEchart(dataArr) {
2024-08-01 14:06:16 +01:00
const option = {
backgroundColor: backgroundColor,
tooltip: {
2024-08-08 11:53:39 +01:00
...tooltip,
2024-08-01 14:06:16 +01:00
valueFormatter(value, index) {
return nFormatter(value, 0);
},
},
toolbox: toolboxParams,
xAxis: {
data: dataArr.map((row) => row.date),
axisTick: axisTick,
axisLabel: axisLabel,
axisLine: axisLine,
},
grid: grid,
dataZoom: dataZoom(),
yAxis: [
{
type: "value",
name: "Hashrate (H/s)",
nameLocation: "middle",
2024-08-08 14:28:01 +01:00
nameGap: 30,
2024-08-08 11:53:39 +01:00
nameTextStyle: textStyleMain,
2024-08-01 14:06:16 +01:00
position: "left",
alignTicks: true,
axisTick: axisTick,
splitLine: {
show: false,
},
axisLine: axisLine,
axisLabel: {
fontSize: 12 * fontScale,
2024-08-08 11:53:39 +01:00
color: textColor,
2024-08-01 14:06:16 +01:00
formatter(value, index) {
return nFormatter(value, 0);
},
},
},
{
type: "value",
name: "Difficulty",
nameLocation: "middle",
2024-08-08 11:53:39 +01:00
nameGap: 30,
nameTextStyle: textStyleMain,
2024-08-01 14:06:16 +01:00
axisTick: axisTick,
position: "right",
alignTicks: true,
axisLine: axisLine,
splitLine: {
show: false,
},
axisLabel: {
fontSize: 12 * fontScale,
2024-08-08 11:53:39 +01:00
color: textColor,
2024-08-01 14:06:16 +01:00
formatter(value, index) {
return nFormatter(value, 0);
},
},
},
],
series: [
{
type: "line",
name: "Hashrate",
barCategoryGap: "0%",
data: dataArr.map((row) => row.hashrate),
},
{
type: "line",
color: "red",
id: "rolling-average",
name: "MA28",
showSymbol: false,
barCategoryGap: "0%",
data: dataArr.map((row) => row.hashrate28),
},
{
type: "line",
yAxisIndex: 1,
name: "Difficulty",
barCategoryGap: "0%",
data: dataArr.map((row) => row.difficulty),
},
],
};
myChart.setOption(option);
}
2024-08-06 12:03:42 +01:00
fetchDataForChart();