![]() |
VOOZH | about |
dotnet add package ChartForgeX.Interactivity --version 0.1.8
NuGet\Install-Package ChartForgeX.Interactivity -Version 0.1.8
<PackageReference Include="ChartForgeX.Interactivity" Version="0.1.8" />
<PackageVersion Include="ChartForgeX.Interactivity" Version="0.1.8" />Directory.Packages.props
<PackageReference Include="ChartForgeX.Interactivity" />Project file
paket add ChartForgeX.Interactivity --version 0.1.8
#r "nuget: ChartForgeX.Interactivity, 0.1.8"
#:package ChartForgeX.Interactivity@0.1.8
#addin nuget:?package=ChartForgeX.Interactivity&version=0.1.8Install as a Cake Addin
#tool nuget:?package=ChartForgeX.Interactivity&version=0.1.8Install as a Cake Tool
ChartForgeX renders polished charts, visual blocks, topology diagrams, and static report visuals from .NET without adding runtime chart dependencies to generated output.
The core package renders SVG, script-free static HTML, PNG, GIF, JPEG, BMP, PPM, and TIFF. Optional browser behavior lives in adapter packages, so generated reports can stay static while dashboard hosts can opt into tooltips, selection, zoom, pan, synchronized charts, and export controls.
dotnet add package ChartForgeX
ChartForgeX targets net472, netstandard2.0, net8.0, and net10.0. The core package has no runtime package dependencies.
| Package | Purpose |
|---|---|
ChartForgeX |
Static SVG, HTML, PNG, GIF, JPEG, BMP, PPM, and TIFF rendering. |
ChartForgeX.Interactivity |
Host-neutral interaction contracts. |
ChartForgeX.Interactivity.Html |
Self-contained HTML/SVG interaction adapter. |
These previews are generated by ChartForgeX.Examples and checked into the public repository. HTML links open through the Evotec preview service so the generated pages render directly.
| Dashboard composition | Topology and geography |
|---|---|
| 👁 Restaurant operations dashboard generated by ChartForgeX |
👁 Geographic topology map generated by ChartForgeX |
| HTML / SVG / PNG | HTML / SVG / PNG |
| Operational dashboard grids | Report-ready small multiples |
|---|---|
| 👁 SaaS MRR dashboard grid generated by ChartForgeX |
👁 Control scorecard small multiples generated by ChartForgeX |
| HTML / SVG / PNG | HTML / SVG / PNG |
More generated output is available in the GitHub gallery artifacts and on the project site.
using ChartForgeX;
using ChartForgeX.Core;
using ChartForgeX.Primitives;
using ChartForgeX.Themes;
using System.Linq;
var chart = Chart.Create()
.WithTitle("Domain Security Checks")
.WithSubtitle("Dependency-free SVG, HTML, and PNG chart rendering")
.WithXAxis("Run")
.WithYAxis("Checks")
.WithTheme(ChartTheme.ReportDark())
.WithSize(1180, 640)
.WithXLabels("Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun")
.AddSmoothArea("Passed", Points(820, 940, 980, 1040, 1120, 1180, 1230))
.AddSmoothLine("Warnings", Points(120, 138, 132, 110, 98, 86, 72), ChartColor.FromRgb(251, 191, 36));
chart.SaveSvg("domain-security.svg");
chart.SavePng("domain-security.png");
chart.SaveHtml("domain-security.html");
static ChartPoint[] Points(params double[] values) =>
values.Select((value, index) => new ChartPoint(index, value)).ToArray();
For hosts that collect chart inputs from scripts, configuration, or UI forms, ChartForgeX.Simple provides small deferred definition objects and turns them into native ChartForgeX.Core.Chart instances. Simple uses core enums, themes, shapes, render options, point helpers, and bubble helpers instead of mirroring them, so direct ChartForgeX callers can stay on the core API.
using ChartForgeX;
using ChartForgeX.Core;
using ChartForgeX.Primitives;
using ChartForgeX.Simple;
var chart = Charts.Build(
new ChartDefinition[] {
new ChartBar("CPU", new double[] { 32, 48, 61 }, ChartColor.FromHex("#2DD4BF")),
new ChartBar("Memory", new double[] { 44, 58, 72 }, ChartColor.FromHex("#60A5FA"))
},
width: 640,
height: 360,
xTitle: "Sample",
yTitle: "Percent",
showGrid: true,
options: new ChartRenderOptions {
UseOverlay = true,
ShowLegend = true,
ShowDataLabels = true
});
chart.SavePng("wallpaper-overlay.png");
chart.SaveSvg("wallpaper-overlay.svg");
UseOverlay applies the transparent composition preset: no card, no plot fill, no axes/grid by default, and a transparent PNG/SVG background. Individual options such as ShowLegend, ShowGrid, or ShowAxes can still be set explicitly after the preset.
When you do not need deferred host definitions, build directly with helpers such as ChartPoints.FromValues(...) and ChartBubbles.FromXYSize(...).
| Need | Use |
|---|---|
| SVG markup | chart.ToSvg() or chart.SaveSvg("chart.svg") |
| Static HTML | chart.ToHtmlFragment(), chart.ToHtmlPage(), or chart.SaveHtml("chart.html") |
| PNG bytes/file | chart.ToPng() or chart.SavePng("chart.png") |
| GIF, JPEG, and raster file output | chart.Save("chart.gif"), chart.Save("chart.jpg", rasterOptions), chart.SaveRasterImage("chart.tiff"), or ImageComposition.FromFile("wallpaper.jpg").Save("wallpaper-output.gif") |
| Reusable image composition | ImageComposition.TryFromBytes(bytes, out var composition), composition.StrokeRectangle(...), composition.DrawCallout(...), composition.Write(stream, RasterImageFormat.Png), or composition.Save(path, RasterImageFormat.Gif) |
| Extension-inferred file output | chart.Save("chart.svg"), chart.Save("chart.html"), chart.Save("chart.png"), chart.Save("chart.gif"), chart.Save("chart.jpg"), chart.Save("chart.tiff") |
RasterImageOptions controls JPEG quality, PNG compression level, and the flattening background for opaque formats.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 is compatible. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 2 NuGet packages that depend on ChartForgeX.Interactivity:
| Package | Downloads |
|---|---|
|
ChartForgeX.Interactivity.Html
Self-contained HTML and SVG interaction adapter for ChartForgeX charts. |
|
|
HtmlForgeX.ChartForgeX
Optional ChartForgeX integration for HtmlForgeX. Embeds ChartForgeX charts, visual grids, visual blocks, visual canvases, and topology diagrams as typed HtmlForgeX elements. |
This package is not used by any popular GitHub repositories.