-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XAxis text cannot be displayed for e.g.: "InvalidFile", "InvalidFileName", "Invalid", "InvalidMessageLength", ... #4242
Closed
IgMRe opened this issue
Feb 15, 2024
· 0 comments
· Fixed by younginnovations/iatipublisher#1494 or sgkens/velvetvoid#11 · May be fixed by Sheitak/weather-graphics-monitoring#643, Suivie-Physique/suivi-physique#22 or Sheitak/weather-graphics-monitoring#646
Closed
XAxis text cannot be displayed for e.g.: "InvalidFile", "InvalidFileName", "Invalid", "InvalidMessageLength", ... #4242
IgMRe opened this issue
Feb 15, 2024
· 0 comments
· Fixed by younginnovations/iatipublisher#1494 or sgkens/velvetvoid#11 · May be fixed by Sheitak/weather-graphics-monitoring#643, Suivie-Physique/suivi-physique#22 or Sheitak/weather-graphics-monitoring#646
Labels
bug
Something isn't working
Comments
This was referenced May 20, 2024
This was referenced May 26, 2024
This was referenced Jun 2, 2024
This was referenced Sep 25, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
XAxis text cannot be displayed for e.g.: "InvalidFile", "Invalid", ...
apexcharts/Blazor-ApexCharts#406 (comment)
Steps to Reproduce
Blazor:
@code {
private List Data { get; set; } = new();
protected override void OnInitialized()
{
Data.Add(new MyData { Category = "TEST", NetProfit = 12, Revenue = 33 }); // Text is Ok
Data.Add(new MyData { Category = "Invalid", NetProfit = 43, Revenue = 42 }); // Text is not displayed
Data.Add(new MyData { Category = "InvalidFile", NetProfit = 112, Revenue = 23 }); // Text is not displayed
}
public class MyData
{
public string Category { get; set; }
public int NetProfit { get; set; }
public int Revenue { get; set; }
}
}
The text was updated successfully, but these errors were encountered: