Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,17 @@ The example covers a few static options, how to use a simple point-dataset and h
}
```

For running on client-side Blazor there is currently a bug on JSON.NET tracked by this [issue](https://github.com/JamesNK/Newtonsoft.Json/issues/2020)

The known workaround is to include the following line on the parent component


```csharp
private ReferenceConverter ReferenceConverter = new ReferenceConverter(typeof(PROBLEMATIC_COMPONENT));
```

For more information please check our [known-issues](https://github.com/Joelius300/ChartJSBlazor/wiki/Known-issues)

# Contributors
* [Joelius300](https://github.com/Joelius300)
* [SeppPenner](https://github.com/SeppPenner)
Expand Down