Fix grafico pareto guasti con componente standard!

This commit is contained in:
Samuele Locatelli
2022-02-25 20:19:34 +01:00
parent 349758a289
commit 557a9510d6
9 changed files with 50 additions and 88 deletions
+4 -4
View File
@@ -12,12 +12,12 @@
[Parameter]
public bool Horizontal { get; set; } = false;
[Parameter]
public List<double> Data { get; set; } = new List<double>();
[Parameter]
public string[]? Data { get; set; }
[Parameter]
public string[]? Labels { get; set; }
public List<string> Labels { get; set; } = new List<string>();
[Parameter]
public double AspRatio { get; set; } = 0;
+1 -1
View File
@@ -9,7 +9,7 @@
public string Id { get; set; } = "MyTs";
[Parameter]
public List<double> Data { get; set; } = null!;
public List<double> Data { get; set; } = new List<double>();
[Parameter]
public List<string> Labels { get; set; } = new List<string>();