Canvas.Views.Web 1.0.0-prerelease

This is a prerelease version of Canvas.Views.Web.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Canvas.Views.Web --version 1.0.0-prerelease
                    
NuGet\Install-Package Canvas.Views.Web -Version 1.0.0-prerelease
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Canvas.Views.Web" Version="1.0.0-prerelease" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Canvas.Views.Web" Version="1.0.0-prerelease" />
                    
Directory.Packages.props
<PackageReference Include="Canvas.Views.Web" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Canvas.Views.Web --version 1.0.0-prerelease
                    
#r "nuget: Canvas.Views.Web, 1.0.0-prerelease"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Canvas.Views.Web&version=1.0.0-prerelease&prerelease
                    
Install Canvas.Views.Web as a Cake Addin
#tool nuget:?package=Canvas.Views.Web&version=1.0.0-prerelease&prerelease
                    
Install Canvas.Views.Web as a Cake Tool

Canvas and Open GL Stock and Financial Charts

Generic cross-platform real-time charts for Web and Desktop apps.

The main purpose of this app is to be used as a charting tool for real-time financial applications, 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 flexible enough for my needs, so created my own. Available in Nuget as CrossCanvas. Usage samples can be found here or as more complete example in a separate repository.

Drawing Methods

Currently available controls.

  • CanvasControl - base Canvas control exposing DrawingContext used with Shapes and Geometries
  • CanvasPanelControl - a wrapper around SkiaSharp and Open GL

In order to add a different type of panel, e.g. GDI+ or Direct 2D, you need to implement ICanvasControl interface.

Chart Types

At the moment, there are four built-in chart types.

  • Line - line
  • Bar - polygon
  • Area - polygon
  • Candle - OHLC box, a mix of a line and a rectangle polygon

If there is a need to create a new chart type, then you need to implement IShape interface.

Pan and Zoom

The chart is completely 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

Data source structure

The simplest format used by the library is a list of model with a single Point property.

// Blazor example 

<CanvasWebView @ref="ViewControl"></CanvasWebView>

@code
{
  public CanvasWebView ViewControl { get; set; }

  protected override async Task OnAfterRenderAsync(bool setup)
  {
    if (setup)
    {
      ViewControl.OnSize = ViewControl.OnCreate = message => OnCreate(nameof(ViewControl), message);
    }
  }

  protected void OnCreate(string name, ViewMessage message)
  {
    var points = Enumerable.Range(1, 100).Select(i => new BarGroupModel
    {
      Index = i,
      Value = new Model { ["Point"] = new Random().Next(-5000, 5000) }
    } as IPointModel);

    var composer = new Composer
    {
      Name = name,
      Points = points.ToList(),
      Engine = new CanvasEngine(message.Width, message.Height)
    };
    
    ViewControl.Composer = composer;
    ViewControl.Update();
  }
}

In case when charts have to be subchronizaed or overlapped within the same viewport, data source should have format of a list where each entry point has a time stamp and a set of Areas and Series that will be rendered in the relevant viewport.

[
  DateTime
  {
    Area A
    {
      Line Series => double,
      Candle Series => OHLC
    },
    Area B 
    {
      Line Series => double,
      Line Series => double
    },
    Area C 
    {
      Bar Series => double
    }
  }, 
  DateTime { ... },
  DateTime { ... },
  DateTime { ... }
]

  • Area is a viewport, an actual chart, each viewport can show several types of series, e.g. a mix of candles and lines.
  • Series is a single chart type to be displayed in the viewport, e.g. lines.
  • Model is a data point of dynamic type, can accept different type of inputs, e.g. double or OHLC box.

At this moment, Painter supports only horizontal orientation, so the axis X is used as an index scale that picks data points from the source list and axis Y is a value scale that represents the actual value of each data point.

Preview

alternate text is missing from this package README image

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
5.6.5 117 2/4/2025
5.6.3 110 1/28/2025
5.6.2 110 1/20/2025
5.6.1 92 1/17/2025
5.6.0 82 1/17/2025
5.5.0 94 1/8/2025
5.0.0 112 12/27/2024
4.5.6 111 12/10/2024
4.5.5 204 10/26/2024
4.5.4 92 10/26/2024
4.5.3 113 10/25/2024
4.5.2 88 10/24/2024
4.5.1 100 10/24/2024
4.5.0 97 10/24/2024
4.0.0 122 10/9/2024
3.3.0 109 10/6/2024
3.2.9 117 9/28/2024
3.2.8 106 9/25/2024
3.2.7 102 9/25/2024
3.2.6 98 9/25/2024
3.2.5 103 9/24/2024
3.2.4 151 8/27/2024
3.2.3 125 8/24/2024
3.2.2 126 8/19/2024
3.2.1 136 8/18/2024
3.2.0 127 8/16/2024
3.1.5 129 6/24/2024
3.1.4 144 6/2/2024
3.1.3 124 5/29/2024
3.1.2 122 5/26/2024
3.1.1 116 5/23/2024
3.1.0 148 5/21/2024
3.0.9 117 5/21/2024
3.0.8 152 3/25/2024
3.0.7 129 3/24/2024
3.0.6 120 3/20/2024
3.0.5 140 3/18/2024
3.0.4 119 3/18/2024
3.0.3 126 3/18/2024
3.0.1 126 3/17/2024
3.0.0 128 3/15/2024
2.0.7 128 3/14/2024
2.0.6 127 3/14/2024
2.0.5 112 3/7/2024
2.0.3 142 3/3/2024
2.0.2 123 3/3/2024
2.0.1 119 3/1/2024
2.0.0 119 2/26/2024
1.9.9 109 2/25/2024
1.9.8 120 2/24/2024
1.9.6 131 2/17/2024
1.9.5 120 2/17/2024
1.9.4 122 2/15/2024
1.9.3 155 2/11/2024
1.9.2 124 2/11/2024
1.9.1 107 2/11/2024
1.9.0 122 2/9/2024
1.8.9 144 2/8/2024
1.8.8 131 2/8/2024
1.8.7 121 2/5/2024
1.8.6 129 2/5/2024
1.8.5 139 1/28/2024
1.8.4 133 1/26/2024
1.8.3 112 1/26/2024
1.8.2 117 1/25/2024
1.8.1 145 1/18/2024
1.8.0 263 5/29/2023
1.7.9-prerelease 162 3/12/2023
1.7.8-prerelease 177 3/5/2023
1.7.7-prerelease 159 2/24/2023
1.7.6-prerelease 182 2/20/2023
1.7.5-prerelease 160 2/14/2023
1.7.1-prerelease 176 2/9/2023
1.7.0-prerelease 164 2/5/2023
1.6.7-prerelease 179 2/4/2023
1.6.6-prerelease 195 2/1/2023
1.6.5-prerelease 240 1/12/2023
1.6.4-prerelease 168 1/8/2023
1.6.3-prerelease 192 12/18/2022
1.6.2-prerelease 180 12/4/2022
1.6.1-prerelease 196 11/24/2022
1.6.0-prerelease 191 11/19/2022
1.5.9-prerelease 191 11/6/2022
1.5.6-prerelease 201 11/3/2022
1.5.5-prerelease 170 11/2/2022
1.5.3-prerelease 178 10/29/2022
1.5.2-prerelease 185 10/2/2022
1.5.1-prerelease 199 10/2/2022
1.5.0-prerelease 191 9/21/2022
1.4.0-prerelease 197 8/7/2022
1.3.9-prerelease 220 8/7/2022
1.3.8-prerelease 219 8/7/2022
1.3.7-prerelease 190 8/2/2022
1.3.6-prerelease 180 8/1/2022
1.3.5-prerelease 187 8/1/2022
1.3.4-prerelease 188 8/1/2022
1.3.3-prerelease 185 8/1/2022
1.3.2-prerelease 198 7/29/2022
1.3.1-prerelease 217 7/21/2022
1.3.0-prerelease 203 7/13/2022
1.2.9-prerelease 213 7/11/2022
1.2.8-prerelease 194 7/9/2022
1.2.7-prerelease 197 7/9/2022
1.2.6-prerelease 218 7/7/2022
1.2.5-prerelease 206 7/1/2022
1.2.4-prerelease 232 5/8/2022
1.2.3-prerelease 217 4/18/2022
1.2.2-prerelease 202 4/17/2022
1.2.1-prerelease 222 4/16/2022
1.2.0-prerelease 208 4/16/2022
1.1.9-prerelease 219 4/15/2022
1.1.8-prerelease 206 4/15/2022
1.1.7-prerelease 214 4/14/2022
1.1.6-prerelease 216 4/12/2022
1.1.5-prerelease 203 4/9/2022
1.1.4-prerelease 200 4/7/2022
1.1.3-prerelease 230 4/6/2022
1.1.2-prerelease 187 4/5/2022
1.1.1-prerelease 193 4/4/2022
1.1.0-prerelease 211 4/3/2022
1.0.9-prerelease 207 4/3/2022
1.0.8-prerelease 222 4/3/2022
1.0.7-prerelease 202 4/3/2022
1.0.6-prerelease 214 4/3/2022
1.0.5-prerelease 216 3/26/2022
1.0.0-prerelease 215 3/24/2022