style: Messwertlinie im Chart hervorgehoben durch dickeren Rand und glatte Linienführung
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -98,11 +98,21 @@ const LoopMeasurementChart = () => {
|
|||||||
borderColor: "lightgrey",
|
borderColor: "lightgrey",
|
||||||
backgroundColor: "rgba(211,211,211,0.5)",
|
backgroundColor: "rgba(211,211,211,0.5)",
|
||||||
borderWidth: 2,
|
borderWidth: 2,
|
||||||
// fill: false,
|
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
pointHoverRadius: 10,
|
pointHoverRadius: 10,
|
||||||
tension: 0.1,
|
tension: 0.1,
|
||||||
order: 1, // ← hinten
|
order: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Messwert Maximum",
|
||||||
|
data: loopMeasurementCurveChartData.map((e) => e.a).reverse(),
|
||||||
|
borderColor: "lightgrey",
|
||||||
|
backgroundColor: "rgba(211,211,211,0.5)",
|
||||||
|
borderWidth: 2,
|
||||||
|
pointRadius: 0,
|
||||||
|
pointHoverRadius: 10,
|
||||||
|
tension: 0.1,
|
||||||
|
order: 1,
|
||||||
},
|
},
|
||||||
selectedMode === "DIA0"
|
selectedMode === "DIA0"
|
||||||
? {
|
? {
|
||||||
@@ -110,37 +120,23 @@ const LoopMeasurementChart = () => {
|
|||||||
data: loopMeasurementCurveChartData.map((e) => e.m).reverse(),
|
data: loopMeasurementCurveChartData.map((e) => e.m).reverse(),
|
||||||
borderColor: getColor("littwin-blue"),
|
borderColor: getColor("littwin-blue"),
|
||||||
backgroundColor: "rgba(59,130,246,0.5)",
|
backgroundColor: "rgba(59,130,246,0.5)",
|
||||||
borderWidth: 2,
|
borderWidth: 3,
|
||||||
// fill: false,
|
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
pointHoverRadius: 10,
|
pointHoverRadius: 10,
|
||||||
tension: 0.1,
|
tension: 0.1,
|
||||||
order: 3, // ← vorne
|
order: 3,
|
||||||
}
|
}
|
||||||
: {
|
: {
|
||||||
label: "Messwert Durchschnitt",
|
label: "Messwert Durchschnitt",
|
||||||
data: loopMeasurementCurveChartData.map((e) => e.g).reverse(),
|
data: loopMeasurementCurveChartData.map((e) => e.g).reverse(),
|
||||||
borderColor: getColor("littwin-blue"),
|
borderColor: getColor("littwin-blue"),
|
||||||
backgroundColor: "rgba(59,130,246,0.5)",
|
backgroundColor: "rgba(59,130,246,0.5)",
|
||||||
borderWidth: 2,
|
borderWidth: 3,
|
||||||
// fill: false,
|
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
pointHoverRadius: 10,
|
pointHoverRadius: 10,
|
||||||
tension: 0.1,
|
tension: 0.1,
|
||||||
order: 3, // ← vorne
|
order: 3,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: "Messwert Maximum",
|
|
||||||
data: loopMeasurementCurveChartData.map((e) => e.a).reverse(),
|
|
||||||
borderColor: "lightgrey",
|
|
||||||
backgroundColor: "rgba(211,211,211,0.5)",
|
|
||||||
borderWidth: 2,
|
|
||||||
// fill: false,
|
|
||||||
pointRadius: 0,
|
|
||||||
pointHoverRadius: 10,
|
|
||||||
tension: 0.1,
|
|
||||||
order: 1, // ← hinten
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -6,5 +6,5 @@
|
|||||||
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
|
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
|
||||||
|
|
||||||
*/
|
*/
|
||||||
const webVersion = "1.6.391";
|
const webVersion = "1.6.392";
|
||||||
export default webVersion;
|
export default webVersion;
|
||||||
|
|||||||
Reference in New Issue
Block a user