Luftborn.HighChart 1.1.0

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Luftborn.HighChart --version 1.1.0
NuGet\Install-Package Luftborn.HighChart -Version 1.1.0
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="Luftborn.HighChart" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Luftborn.HighChart --version 1.1.0
#r "nuget: Luftborn.HighChart, 1.1.0"
#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.
// Install Luftborn.HighChart as a Cake Addin
#addin nuget:?package=Luftborn.HighChart&version=1.1.0

// Install Luftborn.HighChart as a Cake Tool
#tool nuget:?package=Luftborn.HighChart&version=1.1.0

Luftborn.HighChart SDK

Description

.Net Core SDK for HighChart API, it's a .Net core wrapper for HighChart API contains all required settings setup and generate any type of chart.

For more specific information on Highcharts and Highstock options and functions, visit HighChart API sites which also include several live and customizeable examples.

https://www.highcharts.com/docs/

SDK Usage

		var plotLines = new List<PlotLine>
		{
			new PlotLine()
			{
					Color = "red",
					DashStyle = "dash",
					Label = new Label(){
						Align = "right",
						Text = 80,
						VerticalAlign = "bottom"
					},
					Value = 80,
					Width = 2
			},
			new PlotLine()
			{
					Color = "yellow",
					DashStyle = "dash",
					Label = new Label()
					{
						Align= "right",
						Text = 60 ,
						VerticalAlign= "bottom"
					},
					Value = 60,
					Width = 2
			}
		};

		var chartData = new Infile()
		{
			Chart = new Entities.Chart()
			{
				ZoomType = "x",
				Height = 154,
				Witdth = 758
			},
			Credits = new Credits()
			{
				Enabled = false
			},
			Exporting = new Exporting()
			{
				Enabled = false
			},
			Legend = new Legend()
			{
				Enabled = false
			},
			PlotOptions = new PlotOptions()
			{
				Area = new Area()
				{
					FillColor = new FillColor()
					{
						LinearGradient = new LinearGradient()
						{
							X1 = 0,
							X2 = 0,
							Y1 = 0,
							Y2 = 1,
						},
						Stops = new List<List<object>>() {
							new List<object>()
							{
								0,
								"rgba(5,161,222,0.15)"
							},
							new List<object>()
							{
								1,
								"rgba(5,161,222,0)"
							}
						},
					},
					LineWidth = 1,
					Marker = new Marker()
					{
						Radius = 2
					},
					States = new States()
					{
						Hover = new Hover
						{
							LineWidth = 1
						}
					}
				},
			},
			Series = new List<Series>()
			{
				new Series()
				{
					Data = new List<List<object>>()
					{
						new List<object>()
						{
							DateTime.Now, 80
						},
						new List<object>()
						{
							DateTime.Now.AddHours(-2), 60
						}
					},
				Name = "Humidity", Type = "area" }
			},
			Time = new Time()
			{
				UseUTC = false
			},
			Title = new Title()
			{
				Text = "Humidity"
			},
			XAxis = new XAxis()
			{
				Type = "datetime",
				LineColor = "#ffffff",
				LineWidth = 1
			},
			YAxis = new YAxis()
			{
				GridLineWidth = 0,
				PlotLines = plotLines,
				Title = new YAxisTitle()
				{
					Text = "Humidity"
				},
				TickLength = 0
			},
		};

		var chartSettings = new HighChartSettings()
		{
			Constr = "Chart",
			Infile = chartData,
			Scale = false,
			StyledMode = false,
			Type = "image/png",
			Width = "807"
		};

		var highChart = new HighChart(chartSettings);
		var bytes = highChart.ExecuteAsync().Result;

		//or you can default settings and submit plotlines and series....
		var series = new List<Series>()
		{
			new Series()
			{
				Data = new List<List<object>>()
				{
					new List<object>()
					{
						DateTime.Now, 80
					},
					new List<object>()
					{
						DateTime.Now.AddHours(-2),
						60
					}
				},
				Name = "Humidity",
				Type = "area"
			}
		};

		var highChartDefault = new HighChart();
		highChartDefault.AddPlotLines(plotLines);
		highChartDefault.AddSeries(series);
		
		var bytesSeries = highChartDefault.ExecuteAsync().Result;
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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. 
.NET Core netcoreapp3.0 is compatible.  netcoreapp3.1 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