style: einheitliche Farben mit transparenter Füllung für Legende Symbol für alle Messkurven
Isolation, Schleifen, TDR und Meldungseingänge/Analoge Eingänge
This commit is contained in:
@@ -71,6 +71,7 @@ export default function AnalogInputsChart({
|
|||||||
})),
|
})),
|
||||||
fill: false,
|
fill: false,
|
||||||
borderColor: getColor("littwin-blue"),
|
borderColor: getColor("littwin-blue"),
|
||||||
|
backgroundColor: "rgba(59,130,246,0.5)",
|
||||||
borderWidth: 2,
|
borderWidth: 2,
|
||||||
// fill: false,
|
// fill: false,
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
|
|||||||
@@ -96,6 +96,7 @@ const LoopMeasurementChart = () => {
|
|||||||
label: "Messwert Minimum",
|
label: "Messwert Minimum",
|
||||||
data: loopMeasurementCurveChartData.map((e) => e.i).reverse(),
|
data: loopMeasurementCurveChartData.map((e) => e.i).reverse(),
|
||||||
borderColor: "lightgrey",
|
borderColor: "lightgrey",
|
||||||
|
backgroundColor: "rgba(211,211,211,0.5)",
|
||||||
borderWidth: 2,
|
borderWidth: 2,
|
||||||
// fill: false,
|
// fill: false,
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
@@ -107,6 +108,7 @@ const LoopMeasurementChart = () => {
|
|||||||
label: "Messwert",
|
label: "Messwert",
|
||||||
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)",
|
||||||
borderWidth: 2,
|
borderWidth: 2,
|
||||||
// fill: false,
|
// fill: false,
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
@@ -117,6 +119,7 @@ const LoopMeasurementChart = () => {
|
|||||||
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)",
|
||||||
borderWidth: 2,
|
borderWidth: 2,
|
||||||
// fill: false,
|
// fill: false,
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
@@ -127,6 +130,7 @@ const LoopMeasurementChart = () => {
|
|||||||
label: "Messwert Maximum",
|
label: "Messwert Maximum",
|
||||||
data: loopMeasurementCurveChartData.map((e) => e.a).reverse(),
|
data: loopMeasurementCurveChartData.map((e) => e.a).reverse(),
|
||||||
borderColor: "lightgrey",
|
borderColor: "lightgrey",
|
||||||
|
backgroundColor: "rgba(211,211,211,0.5)",
|
||||||
borderWidth: 2,
|
borderWidth: 2,
|
||||||
// fill: false,
|
// fill: false,
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
|
|||||||
@@ -89,6 +89,7 @@ const TDRChart: React.FC<{ isFullScreen: boolean }> = ({ isFullScreen }) => {
|
|||||||
label: `TDR Kurve`,
|
label: `TDR Kurve`,
|
||||||
data: tdrChartData,
|
data: tdrChartData,
|
||||||
borderColor: getColor("littwin-blue"),
|
borderColor: getColor("littwin-blue"),
|
||||||
|
backgroundColor: "rgba(59,130,246,0.5)",
|
||||||
borderWidth: 1,
|
borderWidth: 1,
|
||||||
tension: 0.1,
|
tension: 0.1,
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
@@ -101,7 +102,8 @@ const TDRChart: React.FC<{ isFullScreen: boolean }> = ({ isFullScreen }) => {
|
|||||||
{
|
{
|
||||||
label: "Referenzkurve",
|
label: "Referenzkurve",
|
||||||
data: referenceChartData,
|
data: referenceChartData,
|
||||||
borderColor: "black",
|
borderColor: "rgba(51,51,51,1)", // Dunkelgrau (nicht tiefschwarz)
|
||||||
|
backgroundColor: "rgba(51,51,51,0.3)", // Leicht transparent
|
||||||
borderWidth: 1,
|
borderWidth: 1,
|
||||||
// borderDash: [5, 5],
|
// borderDash: [5, 5],
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
@@ -120,7 +122,8 @@ const TDRChart: React.FC<{ isFullScreen: boolean }> = ({ isFullScreen }) => {
|
|||||||
? [{ d: pinDistance, p: 0 }]
|
? [{ d: pinDistance, p: 0 }]
|
||||||
: [],
|
: [],
|
||||||
borderColor: "red",
|
borderColor: "red",
|
||||||
backgroundColor: "red",
|
borderWidth: 1,
|
||||||
|
backgroundColor: "rgba(220,38,38,0.5)",
|
||||||
pointRadius: 10,
|
pointRadius: 10,
|
||||||
pointStyle: "triangle", // Hier den korrekten Stil setzen
|
pointStyle: "triangle", // Hier den korrekten Stil setzen
|
||||||
showLine: false,
|
showLine: false,
|
||||||
|
|||||||
@@ -6,5 +6,5 @@
|
|||||||
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
|
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
|
||||||
|
|
||||||
*/
|
*/
|
||||||
const webVersion = "1.6.385";
|
const webVersion = "1.6.386";
|
||||||
export default webVersion;
|
export default webVersion;
|
||||||
|
|||||||
Reference in New Issue
Block a user