Canvas.Views.Web
4.5.5
dotnet add package Canvas.Views.Web --version 4.5.5
NuGet\Install-Package Canvas.Views.Web -Version 4.5.5
<PackageReference Include="Canvas.Views.Web" Version="4.5.5" />
paket add Canvas.Views.Web --version 4.5.5
#r "nuget: Canvas.Views.Web, 4.5.5"
// Install Canvas.Views.Web as a Cake Addin #addin nuget:?package=Canvas.Views.Web&version=4.5.5 // Install Canvas.Views.Web as a Cake Tool #tool nuget:?package=Canvas.Views.Web&version=4.5.5
Canvas - Financial Charts
The fastest charting web control targeting primarily Blazor, both Server Side and Web Assembly, and to some extent ASP.NET MVC. This charting library was designed for Web, but it can also be used in Desktop apps via Web View.
The main purpose of this library is to be used as a real-time charting tool for financial applications that require frequent updates, e.g. backtesters for trading strategies.
Here is the most comprehensive guide dedicated to charting in .NET that I have seen so far. Nevertheless, trying various options from that guide I wasn't able to find anything fast and flexible enough for my needs, so created my own.
Status
Install-Package Canvas.Views.Web
Implementations
Currently available controls.
- Engine - base control exposing drawing context for various frameworks, like
GDI
orSkiaSharp
- CanvasEngine - a wrapper around SkiaSharp and Open GL
To add different view types, e.g. GDI+
, Direct 2D
, Win UI
, Open GL
, implement IEngine
interface.
Chart Types
At the moment, the library supports the following chart types.
- Line - line
- Bar - polygon
- Area - polygon
- Arrow - polygon
- Candle - OHLC box
- HeatMap - box
To add new chart types, e.g. Error Bars
or Bubbles
, implement IShape
interface.
Sample
The simplest data format is a list of IShape
models with a X
and Y
properties.
<CanvasView @ref="View"></CanvasView>
@code
{
public CanvasView View { get; set; }
protected override async Task OnAfterRenderAsync(bool setup)
{
if (setup)
{
var generator = new Random();
var points = Enumerable.Range(1, 1000).Select(i => new BarShape
{
X = i,
Y = generator.Next(-5000, 5000)
}).ToList();
var composer = new Composer
{
Name = "Demo",
Items = points
};
await View.Create<CanvasEngine>(engine => composer);
composer.Update();
}
await base.OnAfterRenderAsync(setup);
}
}
By default, the axis X is used as an index that picks data points from the source list and axis Y is a value that represents the actual value of each data point on the vertical scale.
Preview
Synchronization
To simplify synchronization, you can use IGroupShape
model instead of simple IShape
.
This model allows grouping series for each chart by single timestamp, so you could display candles, lines, and other series on the same chart.
Item = new
{
Groups = new GroupShape
{
["Price Area"] = new Dictionary<string, GroupShape>
{
Groups = new GroupShape
{
["Price Series"] = new CandleShape(),
["Arrow Series"] = new ArrowShape()
}
},
["Indicator Area"] = new Dictionary<string, GroupShape>
{
Groups = new GroupShape
{
["Bar Series"] = new BarShape()
}
}
}
}
Pan and Zoom
The chart is data-centric, thus in order to scale the chart you need to change the data source.
By default, the chart displays last 100 data points, as defined in IndexCount
property.
MinIndex = Items.Count - IndexCount
MaxIndex = Items.Count
To pan the chart to the left, subtract arbitrary value from both MinIndex
and MaxIndex
.
MinIndex -= 1
MaxIndex -= 1
To pan the chart to the right, do the opposite.
MinIndex += 1
MaxIndex += 1
To zoom in, increase MinIndex
and decrease MaxIndex
to decrease number of visible points.
MinIndex += 1
MaxIndex -= 1
To zoom out, do the opposite.
MinIndex -= 1
MaxIndex += 1
Roadmap
To increase performance, the chart is split into pieces and each piece is using its own thread, so UI is never blocked even while rendering 100K samples. To increase performance even further, downsampling could be implemented, e.g. when number of points is greater that width of the screen in pixels, because all points wouldn't fit on the screen anyway.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Canvas.Core (>= 4.5.5)
- ScriptContainer (>= 1.3.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.5.5 | 87 | 10/26/2024 |
4.5.4 | 63 | 10/26/2024 |
4.5.3 | 89 | 10/25/2024 |
4.5.2 | 63 | 10/24/2024 |
4.5.1 | 70 | 10/24/2024 |
4.5.0 | 70 | 10/24/2024 |
4.0.0 | 97 | 10/9/2024 |
3.3.0 | 86 | 10/6/2024 |
3.2.9 | 97 | 9/28/2024 |
3.2.8 | 87 | 9/25/2024 |
3.2.7 | 83 | 9/25/2024 |
3.2.6 | 75 | 9/25/2024 |
3.2.5 | 84 | 9/24/2024 |
3.2.4 | 132 | 8/27/2024 |
3.2.3 | 108 | 8/24/2024 |
3.2.2 | 109 | 8/19/2024 |
3.2.1 | 118 | 8/18/2024 |
3.2.0 | 111 | 8/16/2024 |
3.1.5 | 111 | 6/24/2024 |
3.1.4 | 128 | 6/2/2024 |
3.1.3 | 108 | 5/29/2024 |
3.1.2 | 106 | 5/26/2024 |
3.1.1 | 99 | 5/23/2024 |
3.1.0 | 130 | 5/21/2024 |
3.0.9 | 99 | 5/21/2024 |
3.0.8 | 137 | 3/25/2024 |
3.0.7 | 117 | 3/24/2024 |
3.0.6 | 107 | 3/20/2024 |
3.0.5 | 126 | 3/18/2024 |
3.0.4 | 105 | 3/18/2024 |
3.0.3 | 114 | 3/18/2024 |
3.0.1 | 110 | 3/17/2024 |
3.0.0 | 115 | 3/15/2024 |
2.0.7 | 114 | 3/14/2024 |
2.0.6 | 112 | 3/14/2024 |
2.0.5 | 99 | 3/7/2024 |
2.0.3 | 128 | 3/3/2024 |
2.0.2 | 109 | 3/3/2024 |
2.0.1 | 106 | 3/1/2024 |
2.0.0 | 106 | 2/26/2024 |
1.9.9 | 95 | 2/25/2024 |
1.9.8 | 104 | 2/24/2024 |
1.9.6 | 112 | 2/17/2024 |
1.9.5 | 104 | 2/17/2024 |
1.9.4 | 105 | 2/15/2024 |
1.9.3 | 135 | 2/11/2024 |
1.9.2 | 104 | 2/11/2024 |
1.9.1 | 92 | 2/11/2024 |
1.9.0 | 105 | 2/9/2024 |
1.8.9 | 125 | 2/8/2024 |
1.8.8 | 112 | 2/8/2024 |
1.8.7 | 110 | 2/5/2024 |
1.8.6 | 116 | 2/5/2024 |
1.8.5 | 123 | 1/28/2024 |
1.8.4 | 118 | 1/26/2024 |
1.8.3 | 99 | 1/26/2024 |
1.8.2 | 104 | 1/25/2024 |
1.8.1 | 130 | 1/18/2024 |
1.8.0 | 247 | 5/29/2023 |
1.7.9-prerelease | 151 | 3/12/2023 |
1.7.8-prerelease | 166 | 3/5/2023 |
1.7.7-prerelease | 146 | 2/24/2023 |
1.7.6-prerelease | 167 | 2/20/2023 |
1.7.5-prerelease | 148 | 2/14/2023 |
1.7.1-prerelease | 163 | 2/9/2023 |
1.7.0-prerelease | 151 | 2/5/2023 |
1.6.7-prerelease | 166 | 2/4/2023 |
1.6.6-prerelease | 181 | 2/1/2023 |
1.6.5-prerelease | 222 | 1/12/2023 |
1.6.4-prerelease | 153 | 1/8/2023 |
1.6.3-prerelease | 171 | 12/18/2022 |
1.6.2-prerelease | 162 | 12/4/2022 |
1.6.1-prerelease | 182 | 11/24/2022 |
1.6.0-prerelease | 177 | 11/19/2022 |
1.5.9-prerelease | 175 | 11/6/2022 |
1.5.6-prerelease | 185 | 11/3/2022 |
1.5.5-prerelease | 153 | 11/2/2022 |
1.5.3-prerelease | 164 | 10/29/2022 |
1.5.2-prerelease | 170 | 10/2/2022 |
1.5.1-prerelease | 182 | 10/2/2022 |
1.5.0-prerelease | 175 | 9/21/2022 |
1.4.0-prerelease | 180 | 8/7/2022 |
1.3.9-prerelease | 204 | 8/7/2022 |
1.3.8-prerelease | 201 | 8/7/2022 |
1.3.7-prerelease | 173 | 8/2/2022 |
1.3.6-prerelease | 164 | 8/1/2022 |
1.3.5-prerelease | 169 | 8/1/2022 |
1.3.4-prerelease | 170 | 8/1/2022 |
1.3.3-prerelease | 169 | 8/1/2022 |
1.3.2-prerelease | 182 | 7/29/2022 |
1.3.1-prerelease | 200 | 7/21/2022 |
1.3.0-prerelease | 187 | 7/13/2022 |
1.2.9-prerelease | 195 | 7/11/2022 |
1.2.8-prerelease | 178 | 7/9/2022 |
1.2.7-prerelease | 181 | 7/9/2022 |
1.2.6-prerelease | 202 | 7/7/2022 |
1.2.5-prerelease | 188 | 7/1/2022 |
1.2.4-prerelease | 214 | 5/8/2022 |
1.2.3-prerelease | 197 | 4/18/2022 |
1.2.2-prerelease | 183 | 4/17/2022 |
1.2.1-prerelease | 204 | 4/16/2022 |
1.2.0-prerelease | 189 | 4/16/2022 |
1.1.9-prerelease | 200 | 4/15/2022 |
1.1.8-prerelease | 187 | 4/15/2022 |
1.1.7-prerelease | 196 | 4/14/2022 |
1.1.6-prerelease | 198 | 4/12/2022 |
1.1.5-prerelease | 184 | 4/9/2022 |
1.1.4-prerelease | 181 | 4/7/2022 |
1.1.3-prerelease | 210 | 4/6/2022 |
1.1.2-prerelease | 165 | 4/5/2022 |
1.1.1-prerelease | 174 | 4/4/2022 |
1.1.0-prerelease | 192 | 4/3/2022 |
1.0.9-prerelease | 188 | 4/3/2022 |
1.0.8-prerelease | 205 | 4/3/2022 |
1.0.7-prerelease | 181 | 4/3/2022 |
1.0.6-prerelease | 195 | 4/3/2022 |
1.0.5-prerelease | 196 | 3/26/2022 |
1.0.0-prerelease | 196 | 3/24/2022 |