style: Messwertkurven Legende und Liniern style angepasst
This commit is contained in:
@@ -119,7 +119,6 @@ const IsoMeasurementChart = () => {
|
||||
label: "Messwert Minimum",
|
||||
data: isoMeasurementCurveChartData.map((e) => e.i).reverse(),
|
||||
borderColor: "lightgrey",
|
||||
backgroundColor: "rgba(211,211,211,0.5)",
|
||||
borderWidth: 2,
|
||||
pointRadius: 0,
|
||||
pointHoverRadius: 10,
|
||||
@@ -129,13 +128,11 @@ const IsoMeasurementChart = () => {
|
||||
{
|
||||
label: "Messwert Maximum",
|
||||
data: isoMeasurementCurveChartData.map((e) => e.a).reverse(),
|
||||
borderColor: "lightgrey",
|
||||
backgroundColor: "rgba(211,211,211,0.5)",
|
||||
borderWidth: 2,
|
||||
borderColor: "gray",
|
||||
borderWidth: 1,
|
||||
pointRadius: 0,
|
||||
pointHoverRadius: 10,
|
||||
tension: 0.1,
|
||||
order: 1,
|
||||
order: 3,
|
||||
},
|
||||
selectedMode === "DIA0"
|
||||
? {
|
||||
@@ -147,7 +144,7 @@ const IsoMeasurementChart = () => {
|
||||
pointRadius: 0,
|
||||
pointHoverRadius: 10,
|
||||
tension: 0.1,
|
||||
order: 3,
|
||||
order: 2,
|
||||
}
|
||||
: {
|
||||
label: "Messwert Durchschnitt",
|
||||
@@ -158,7 +155,7 @@ const IsoMeasurementChart = () => {
|
||||
pointRadius: 0,
|
||||
pointHoverRadius: 10,
|
||||
tension: 0.1,
|
||||
order: 3,
|
||||
order: 2,
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
@@ -118,24 +118,20 @@ const LoopMeasurementChart = () => {
|
||||
{
|
||||
label: "Messwert Minimum",
|
||||
data: loopMeasurementCurveChartData.map((e) => e.i).reverse(),
|
||||
borderColor: "lightgrey",
|
||||
backgroundColor: "rgba(211,211,211,0.5)",
|
||||
borderWidth: 2,
|
||||
borderColor: "gray",
|
||||
borderWidth: 1,
|
||||
pointRadius: 0,
|
||||
pointHoverRadius: 10,
|
||||
tension: 0.1,
|
||||
order: 1,
|
||||
},
|
||||
{
|
||||
label: "Messwert Maximum",
|
||||
data: loopMeasurementCurveChartData.map((e) => e.a).reverse(),
|
||||
borderColor: "lightgrey",
|
||||
backgroundColor: "rgba(211,211,211,0.5)",
|
||||
borderWidth: 2,
|
||||
borderColor: "gray",
|
||||
borderWidth: 1,
|
||||
pointRadius: 0,
|
||||
pointHoverRadius: 10,
|
||||
tension: 0.1,
|
||||
order: 1,
|
||||
order: 3,
|
||||
},
|
||||
selectedMode === "DIA0"
|
||||
? {
|
||||
@@ -147,7 +143,7 @@ const LoopMeasurementChart = () => {
|
||||
pointRadius: 0,
|
||||
pointHoverRadius: 10,
|
||||
tension: 0.1,
|
||||
order: 3,
|
||||
order: 2,
|
||||
}
|
||||
: {
|
||||
label: "Messwert Durchschnitt",
|
||||
@@ -158,7 +154,7 @@ const LoopMeasurementChart = () => {
|
||||
pointRadius: 0,
|
||||
pointHoverRadius: 10,
|
||||
tension: 0.1,
|
||||
order: 3,
|
||||
order: 2,
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user