ChartJS
Simple yet flexible JavaScript charting for designers & developers

Features
How to Use
Code sample

Last updated
Was this helpful?
Simple yet flexible JavaScript charting for designers & developers


Last updated
Was this helpful?
Was this helpful?
chartJS1.Options.Tooltips = new Wisej.Web.Ext.ChartJS.OptionsTooltips { Enabled = false };ChartJS1.Options.Tooltips = New Wisej.Web.Ext.ChartJS.OptionsTooltips With {.Enabled = False}var data = new object[10];
Random random = new Random();
for (int i = 0; i < 10; i++)
{
data[i] = new Point(i, random.Next(10));
}
DataSet ds = chartJS1.DataSets.Add("ds1");
ds.Data = data;
ds.BackgroundColor = Color.Red;Dim data(9) As Object
Dim random As New Random()
For i As Integer = 0 To 9
data(i) = New Point(i, random.Next(10))
Next
Dim ds = ChartJS1.DataSets.Add("ds1")
ds.Data = data
ds.BackgroundColor = Color.Red// Numeric labels
this.chartJS1.Labels = new string[] {"1","2","3","4"};
// Day of the week labels
this.chartJS1.Labels = new string[] {"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"};'Numeric labels
Me.ChartJS1.Labels = New String() {"1", "2", "3", "4"}
'Day of the week labels
Me.ChartJS1.Labels = New String() {"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"}