Paul Grimstrup
Paul Grimstrup
I have the same issue on a page that refreshes the displayed data every 10 seconds. I just had a quick look at the base chart class and it appears...
Added Hidden property to DataSet base class. Added sample to the Vertical Bar Class. Fixes #186.
Code execution errors: Are these being thrown as exceptions that you need to handle? There are a couple of places in the code where `dynamic` is being used and trying...
This looks like a timing issue. The OnInitializedAsync call may not have been completed before Blazor makes its first render, so _chart would have been null. There are three ways...
BorderRadius is a ChartJS feature that was introduced in ChartJS v3.0. Unfortunately ChartJS.Blazor is using v2.9.4. I do have a plan to upgrade ChartJS.Blazor to v3.0, so this will definitely...
@Joelius300 I have submitted a PR for some changes. I am also keen to take on maintainer role of this repo. Is there a way you can provide me with...
Suggested feature related to plugins: Allow plugins to implement IDisposable and call the IDispsable.Dispose method when the application shuts down or the plugin is otherwise being unloaded. Some worker plugins...
Started using Trailing Stops via the SetTradingStop() method and I am also receiving this error message; `` Cannot map enum value. EnumType: StopOrderType, Value: TrailingProfit, Known values: TakeProfit, StopLoss, TrailingStop,...
After working with the API and trailing stops I have found the following: A "TrailingProfit" order is essentially a TrailingStop order that has not yet reached it's activation price. Once...