Replies: 1 comment 4 replies
-
Can this help you? #2127 |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So, I'm looking at chartjs's docs and trying to match them up against this lib's docs because I can't find the info I need in the Blazorise Charts doc...
It seems that chartjs would hopefully allow me to put data like:
And somehow declare the axis as date, so those values get parsed correctly, and then I could have a line that steps up and down between these intervals (which do not occur regularly)
The Blazorise Chart docs seem to use Primitive type dataset e.g.
LineChartDataSet<double>
but I'm wondering how/if I can use the x/y flavor instead, and if so, what does that look like? Will any object that has an X and Y property (like(DateTime x, double y)
or anonymous type work, or must it be a dedicated class? and is there a dedicated class already in blazorise?I also assume that there's a way to declare the type of the x axis, or will it be detected from the type I pass for X in the dataset?
Beta Was this translation helpful? Give feedback.
All reactions