kayChart.dll
0.3.2
See the version list below for details.
dotnet add package kayChart.dll --version 0.3.2
NuGet\Install-Package kayChart.dll -Version 0.3.2
<PackageReference Include="kayChart.dll" Version="0.3.2" />
paket add kayChart.dll --version 0.3.2
#r "nuget: kayChart.dll, 0.3.2"
// Install kayChart.dll as a Cake Addin #addin nuget:?package=kayChart.dll&version=0.3.2 // Install kayChart.dll as a Cake Tool #tool nuget:?package=kayChart.dll&version=0.3.2
This dll allows you to use charts as real time charts.This is alpha version...If you got any suggestions or ideas,let me know.
Class namespace:rtChart;
Class contains only one public method and field.
In the constructor you have to pass name of the chart and array size which holds data for redrawing chart.
Ex.
kayChart kChart = new kayChart(chart1,60);
Then create method which supply data for chart.Method needs to return double.
private double DataForChart(){
{
Random rnd = new Random();
return rnd.Next(0,1000);
}
To get it working you have to pass that method to updateChart()
Task.Factory.StartNew(() =>
{
kChart.updateChart(DataForChart,1000);
}
Where 1000 is refresh time.
Default series name is Series1
If you change it,you have to change it before calling UpdateChart()
kChart.serie = "other series name";
Documentation will be available soon.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- SampleDependency (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.