Fusion Charts

Version: 3.12.1 examples.

Single Series Charts

Set as ChartModel.type, there are some single series chart examples here.

1
2
3
column3d,
pie3d,
bar3d

ChartModel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
public class ChartModel
{
public ChartModel()
{
dataSource = new dataSource();
dataSource.chart = new chart();
dataSource.data = new List<data>();
}

public string type { get; set; }
public string renderAt { get; set; }
public string width { get; set; }
public string height { get; set; }
public string dataFormat { get; set; }
public dataSource dataSource { get; set; }
}

public class dataSource
{
public chart chart { get; set; }
public List<data> data { get; set; }
}

public class chart
{
public string caption { get; set; }
public string subCaption { get; set; }
public string xAxisName { get; set; }
public string yAxisName { get; set; }
public string theme { get; set; }

/// <summary>
/// If set to 3 displays the value as x.xxx in the tool tip
/// </summary>
public string decimals { get; set; }
public string showValues { get; set; }
}

public class data
{
public string label { get; set; }
public string value { get; set; }
}

Combination Charts

Combination charts examples here.