Steema.TeeChart.NET.MAUI 6.2026.9.2

dotnet add package Steema.TeeChart.NET.MAUI --version 6.2026.9.2
                    
NuGet\Install-Package Steema.TeeChart.NET.MAUI -Version 6.2026.9.2
                    
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="Steema.TeeChart.NET.MAUI" Version="6.2026.9.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Steema.TeeChart.NET.MAUI" Version="6.2026.9.2" />
                    
Directory.Packages.props
<PackageReference Include="Steema.TeeChart.NET.MAUI" />
                    
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 Steema.TeeChart.NET.MAUI --version 6.2026.9.2
                    
#r "nuget: Steema.TeeChart.NET.MAUI, 6.2026.9.2"
                    
#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.
#:package Steema.TeeChart.NET.MAUI@6.2026.9.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Steema.TeeChart.NET.MAUI&version=6.2026.9.2
                    
Install as a Cake Addin
#tool nuget:?package=Steema.TeeChart.NET.MAUI&version=6.2026.9.2
                    
Install as a Cake Tool

TeeChart for .NET MAUI

TeeChart for .NET MAUI is a professional charting library for .NET MAUI applications. It includes a broad range of 2D and 3D series, axes, legends, marks, tools and export formats, with a native MAUI drawing surface for Android, iOS, Mac Catalyst and Windows.

Installation

Install the package from NuGet:

dotnet add package Steema.TeeChart.NET.MAUI

The package is published by Steema Software, S.L. and is distributed under the applicable TeeChart commercial license. See Steema licensing for terms and evaluation options.

Quick start

Register MAUI handlers as usual and add a chart to a page:

using Steema.TeeChart.Maui;
using Steema.TeeChart.Styles;

var chart = new TChart();
var series = new Bar(chart.Chart);
series.Add(12, "Q1");
series.Add(18, "Q2");
series.Add(15, "Q3");

Add the TChart control to any MAUI layout. The control resizes with its parent and uses the MAUI graphics canvas for rendering.

Supported target frameworks

The package is built for the .NET 10 MAUI platform targets:

  • net10.0-android
  • net10.0-ios
  • net10.0-maccatalyst
  • net10.0-windows10.0.19041.0

Building the package from this repository

From the TeeChart.PCL.NET10 directory run:

dotnet pack .\TeeChart.Maui.NuGet\TeeChart.Maui.NuGet.csproj -c Release

The default package version is generated as 6.year.month.day (for example 6.2026.9.2). To provide an explicit version:

dotnet pack .\TeeChart.Maui.NuGet\TeeChart.Maui.NuGet.csproj -c Release -p:PackageVersion=6.2026.9.2

The .nupkg and symbol package are written to TeeChart.PCL.NET10\artifacts\packages by default. PackageOutputPath and PackTargetFrameworks can be overridden for CI or release builds.

Product information

Product Compatible and additional computed target framework versions.
.NET net10.0-android36.0 is compatible.  net10.0-ios26.0 is compatible.  net10.0-maccatalyst26.0 is compatible.  net10.0-windows10.0.19041 is compatible. 
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
6.2026.9.2 96 9/2/2026
6.2025.1.13 763 1/13/2025
6.2024.11.6 349 11/5/2024
6.2024.8.29 928 8/29/2024
6.2024.8.21 332 8/20/2024
6.2024.7.18 322 7/18/2024
6.2024.2.19 436 2/19/2024
6.2023.12.11 372 12/11/2023
6.2023.9.3 343 10/3/2023
6.2023.8.16 416 8/16/2023
6.2023.7.7 568 7/7/2023
6.2023.7.1 379 7/3/2023
4.2022.12.22 627 12/22/2022
4.2022.9.9-beta 368 9/9/2022
4.2022.7.13-beta 480 7/13/2022

TeeChart for .NET MAUI package. See the README for supported target frameworks and getting started instructions.