new frappe.Chart("#chart", {
data: {
labels: ["17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17"],
datasets: [
{
name: "sees", chartType: "bar",
values: [16.89,60.61,0.00,0.00,85.01,85.03,38.02,32.21,40.12,27.47,38.37,43.38,25.02,91.52,85.12,0.00,0.04,-0.01,0.00,0.39,-0.85,-1.00,-1.05,0.01,7.29]
},
{
name: "€/MWh", chartType: "bar",
values: [16.89,60.61,142.82,225.11,85.01,85.03,38.02,32.21,40.12,27.47,38.37,43.38,25.02,91.52,85.12,148.35,0.04,-0.01,0.00,0.39,-0.85,-1.00,-1.05,0.01,7.29]
}
],
yRegions: [
{ label: "50", start: 0, end: 50, options: { labelPos: "right" } }
]
},
title: "Põrandakütte plaan",
type: "axis-mixed",
height: 300,
colors: ["green","blue"],
lineOptions: {
dotSize: 8
},
tooltipOptions: {
formatTooltipX: (h) => "tund: " + h,
formatTooltipY: (s) => s
}
});