"videoconference.html" did not exist on "c4a96df678a9a68f55a437b7b409ad6af007250e"
Commit 2005064b authored by Pithon Kabiro's avatar Pithon Kabiro
Browse files

Edit tooltip for scatter plot

parent 9d7ed9e2
1 merge request!1Add bare bones scatter plot chart
Showing with 13 additions and 4 deletions
+13 -4
...@@ -789,12 +789,12 @@ const drawScatterPlotHC = function () { ...@@ -789,12 +789,12 @@ const drawScatterPlotHC = function () {
const SERIES_1_NAME = "Rücklauftemp"; const SERIES_1_NAME = "Rücklauftemp";
const SERIES_1_SYMBOL_COLOR = "rgba(119, 152, 191, .5)"; const SERIES_1_SYMBOL_COLOR = "rgba(119, 152, 191, .5)";
const SERIES_1_TEXT_COLOR = "rgb(119, 152, 191)"; // remove transparency from symbol color const SERIES_1_TEXT_COLOR = "rgb(119, 152, 191)"; // remove transparency from symbol color for a more "intense" color
const SERIES_1_SYMBOL = "°C"; const SERIES_1_SYMBOL = "°C";
const SERIES_2_NAME = "Power"; const SERIES_2_NAME = "Power";
const SERIES_2_SYMBOL_COLOR = "rgba(223, 83, 83, .5)"; const SERIES_2_SYMBOL_COLOR = "rgba(223, 83, 83, .5)";
const SERIES_2_TEXT_COLOR = "rgb(223, 83, 83)"; // remove transparency from symbol color const SERIES_2_TEXT_COLOR = "rgb(223, 83, 83)"; // remove transparency from symbol color for a more "intense" color
const SERIES_2_SYMBOL = "kW"; const SERIES_2_SYMBOL = "kW";
Highcharts.chart("chart-scatter-plot", { Highcharts.chart("chart-scatter-plot", {
...@@ -886,8 +886,9 @@ const drawScatterPlotHC = function () { ...@@ -886,8 +886,9 @@ const drawScatterPlotHC = function () {
}, },
}, },
tooltip: { tooltip: {
headerFormat: "<b>{series.name}</b><br>", headerFormat: "{point.x:%e %b, %Y %H:%M:%S}: <b>{point.y}</b>",
pointFormat: "{point.x} cm, {point.y} kg", pointFormat: "{point.x} cm, {point.y} kg",
valueDecimals: 2,
}, },
}, },
}, },
...@@ -897,12 +898,20 @@ const drawScatterPlotHC = function () { ...@@ -897,12 +898,20 @@ const drawScatterPlotHC = function () {
name: SERIES_1_NAME, name: SERIES_1_NAME,
color: SERIES_1_SYMBOL_COLOR, color: SERIES_1_SYMBOL_COLOR,
data: ruecklaufArr, data: ruecklaufArr,
yAxis: 1, // need this property for the dual y-axes tooltip: {
valueSuffix: ` ${SERIES_1_SYMBOL}`,
},
}, },
{ {
name: SERIES_2_NAME, name: SERIES_2_NAME,
color: SERIES_2_SYMBOL_COLOR, color: SERIES_2_SYMBOL_COLOR,
data: powerArr, data: powerArr,
// need this property for the dual y-axes to work
// defines the y-axis that this series refers to
yAxis: 1,
tooltip: {
valueSuffix: ` ${SERIES_2_SYMBOL}`,
},
}, },
], ],
}); });
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment