Joel L.
Joel L.
Okay let's do this one by one. By the way, I think it would be a good idea to expand the guidelines with the results of this discussion. Either rename...
I will update the conventions when I get time (so not now lol). I have also reviewed your PR and requested some changes but overall it seems good. Ps. camelCase...
@MindSwipe We're not targeting .net core 3 at the moment. We're targeting .net standard 2.0, that's why it doesn't default to c# 8 but to c# 7.3. Do we want...
Yes this is the most important thing after we're done with 0.10.3. We need do complete this file before any other charts are reworked. I can work on it from...
Only use `this` where necessary. This is adapted from point 4 in the [corefx coding-style](https://github.com/dotnet/corefx/blob/master/Documentation/coding-guidelines/coding-style.md). `base` is also never used unless necessary. Yes, private variables are prefixed with _. In...
I did this because I didn't want to add two basically empty lines. As far as I'm concerned, the other common way to do it would be using two lines...
So there has been an update. I tried getting the IJSRuntime to use Json.Net. Since this didn't work I have asked [on StackOverflow](https://stackoverflow.com/questions/56915186/ijsruntime-ignores-custom-json-serializer-in-server-side-blazor-project) and done further research. I have asked...
UPDATE: Since it (very unfortunately) won't be supported in IJSRuntime I reached out to the corefx team to see what's going on in the development for System.Text.Json (potential support for...
Update: I have created a repos for the test-project I use to see how certain values are serialized. It's very helpful for solving this issue. You can find the repository...
Even though they are _not yet_ documented, there are some more samples in the server-side application([WebCore](https://github.com/Joelius300/ChartJSBlazor/tree/master/WebCore)). [LineLinearExample](https://github.com/Joelius300/ChartJSBlazor/blob/master/WebCore/Pages/LineLinearExample.razor) is one you should take a look at and there are two more...