Browse Source

adding files

Bryan Allred 11 years ago
parent
commit
26081652b4

+ 146 - 0
Highchart.cs

1
using System.Collections.Generic;
2
using System.IO;
3
using System.Runtime.Serialization;
4
using System.Runtime.Serialization.Json;
5
6
namespace RevolvingCow.Highcharts
7
{
8
    /// <summary>
9
    /// Highchart graph object.
10
    /// </summary>
11
    [DataContract]
12
    public class Highchart
13
    {
14
        /// <summary>
15
        /// Gets or sets the chart.
16
        /// </summary>
17
        [DataMember(Name = "chart", EmitDefaultValue = false, IsRequired = false)]
18
        public HighchartChart Chart { get; set; }
19
20
        /// <summary>
21
        /// Gets or sets a list of colors.
22
        /// </summary>
23
        [DataMember(Name = "colors", EmitDefaultValue = false, IsRequired = false)]
24
        public IEnumerable<string> Colors { get; set; }
25
26
        /// <summary>
27
        /// Gets or sets the credits.
28
        /// </summary>
29
        [DataMember(Name = "credits", EmitDefaultValue = false, IsRequired = false)]
30
        public HighchartCredits Credits { get; set; }
31
32
        /// <summary>
33
        /// Gets or sets the drilldown configuration.
34
        /// </summary>
35
        [DataMember(Name = "drilldown", EmitDefaultValue = false, IsRequired = false)]
36
        public HighchartDrilldown Drilldown { get; set; }
37
38
        /// <summary>
39
        /// Gets or sets the exporting options.
40
        /// </summary>
41
        [DataMember(Name = "exporting", EmitDefaultValue = false, IsRequired = false)]
42
        public HighchartExporting Exporting { get; set; }
43
44
        /// <summary>
45
        /// Gets or sets the labels.
46
        /// </summary>
47
        [DataMember(Name = "labels", EmitDefaultValue = false, IsRequired = false)]
48
        public HighchartLabels Labels { get; set; }
49
50
        /// <summary>
51
        /// Gets or sets the legend.
52
        /// </summary>
53
        [DataMember(Name = "legend", EmitDefaultValue = false, IsRequired = false)]
54
        public HighchartLegend Legend { get; set; }
55
56
        /// <summary>
57
        /// Gets or sets the loading options.
58
        /// </summary>
59
        [DataMember(Name = "loading", EmitDefaultValue = false, IsRequired = false)]
60
        public HighchartLoading Loading { get; set; }
61
62
        /// <summary>
63
        /// Gets or sets the navigation.
64
        /// </summary>
65
        [DataMember(Name = "navigation", EmitDefaultValue = false, IsRequired = false)]
66
        public HighchartNavigation Navigation { get; set; }
67
68
        /// <summary>
69
        /// Gets or sets the "no data" options.
70
        /// </summary>
71
        /// <remarks>Requires the "no data" plugin.</remarks>
72
        [DataMember(Name = "noData", EmitDefaultValue = false, IsRequired = false)]
73
        public HighchartNoData NoData { get; set; }
74
75
        /// <summary>
76
        /// Gets or sets the pane.
77
        /// </summary>
78
        [DataMember(Name = "pane", EmitDefaultValue = false, IsRequired = false)]
79
        public HighchartPane Pane { get; set; }
80
81
        /// <summary>
82
        /// Gets or sets the plot options.
83
        /// </summary>
84
        [DataMember(Name = "plotOptions", EmitDefaultValue = false, IsRequired = false)]
85
        public HighchartPlotOptions PlotOptions { get; set; }
86
87
        /// <summary>
88
        /// Gets or sets the series.
89
        /// </summary>
90
        [DataMember(Name = "series", EmitDefaultValue = false, IsRequired = false)]
91
        public IEnumerable<HighchartSeries> Series { get; set; }
92
93
        /// <summary>
94
        /// Gets or sets the subtitle.
95
        /// </summary>
96
        [DataMember(Name = "subtitle", EmitDefaultValue = false, IsRequired = false)]
97
        public HighchartSubtitle Subtitle { get; set; }
98
99
        /// <summary>
100
        /// Gets or sets the title.
101
        /// </summary>
102
        [DataMember(Name = "title", EmitDefaultValue = false, IsRequired = false)]
103
        public HighchartTitle Title { get; set; }
104
105
        /// <summary>
106
        /// Gets or sets the tooltip.
107
        /// </summary>
108
        [DataMember(Name = "tooltip", EmitDefaultValue = false, IsRequired = false)]
109
        public HighchartTooltip Tooltip { get; set; }
110
111
        /// <summary>
112
        /// Gets or sets the x-axis.
113
        /// </summary>
114
        [DataMember(Name = "xAxis", EmitDefaultValue = false, IsRequired = false)]
115
        public HighchartAxis XAxis { get; set; }
116
117
        /// <summary>
118
        /// Gets or sets the y-axis.
119
        /// </summary>
120
        [DataMember(Name = "yAxis", EmitDefaultValue = false, IsRequired = false)]
121
        public HighchartAxis YAxis { get; set; }
122
123
        /// <summary>
124
        /// Returns the graph in a JSON format.
125
        /// </summary>
126
        /// <returns>JSON format of the object.</returns>
127
        public override string ToString()
128
        {
129
            string json = null;
130
131
            using (var memoryStream = new MemoryStream())
132
            {
133
                var serializer = new DataContractJsonSerializer(this.GetType());
134
                serializer.WriteObject(memoryStream, this);
135
136
                memoryStream.Position = 0;
137
                using (var reader = new StreamReader(memoryStream))
138
                {
139
                    json = reader.ReadToEnd();
140
                }
141
            }
142
143
            return json;
144
        }
145
    }
146
}

+ 313 - 0
HighchartAxis.cs

1
using System.Collections.Generic;
2
using System.Runtime.Serialization;
3
4
namespace RevolvingCow.Highcharts
5
{
6
    /// <summary>
7
    /// The Highchart axis class.
8
    /// </summary>
9
    [DataContract]
10
    public class HighchartAxis
11
    {
12
        /// <summary>
13
        /// Gets or sets a value indicating whether decimal values are allowed.
14
        /// </summary>
15
        [DataMember(Name = "allowDecimals", EmitDefaultValue = false, IsRequired = false)]
16
        public bool AllowDecimals { get; set; }
17
18
        /// <summary>
19
        /// Gets or sets the alternate grid color.
20
        /// </summary>
21
        [DataMember(Name = "alternateGridColor", EmitDefaultValue = false, IsRequired = false)]
22
        public string AlternateGridColor { get; set; }
23
24
        /// <summary>
25
        /// Gets or sets the categories.
26
        /// </summary>
27
        [DataMember(Name = "categories", EmitDefaultValue = false, IsRequired = false)]
28
        public IEnumerable<string> Categories { get; set; }
29
30
        /// <summary>
31
        /// Gets or sets the date time label formats.
32
        /// </summary>
33
        [DataMember(Name = "dateTimeLabelFormats", EmitDefaultValue = false, IsRequired = false)]
34
        public string DateTimeLabelFormats { get; set; }
35
36
        /// <summary>
37
        /// Gets or sets a value indicating whether to end on a tick.
38
        /// </summary>
39
        [DataMember(Name = "endOnTick", EmitDefaultValue = false, IsRequired = false)]
40
        public bool EndOnTick { get; set; }
41
42
        /// <summary>
43
        /// Gets or sets the events.
44
        /// </summary>
45
        [DataMember(Name = "events", EmitDefaultValue = false, IsRequired = false)]
46
        public IEnumerable<HighchartAxisEvent> Events { get; set; }
47
48
        /// <summary>
49
        /// Gets or sets the grid line color.
50
        /// </summary>
51
        [DataMember(Name = "gridLineColor", EmitDefaultValue = false, IsRequired = false)]
52
        public string GridLineColor { get; set; }
53
54
        /// <summary>
55
        /// Gets or sets the grid line dash style.
56
        /// </summary>
57
        [DataMember(Name = "gridLineDashStyle", EmitDefaultValue = false, IsRequired = false)]
58
        public string GridLineDashStyle { get; set; }
59
60
        /// <summary>
61
        /// Gets or sets the grid line width.
62
        /// </summary>
63
        [DataMember(Name = "gridLineWidth", EmitDefaultValue = false, IsRequired = false)]
64
        public int GridLineWidth { get; set; }
65
66
        /// <summary>
67
        /// Gets or sets the identifier.
68
        /// </summary>
69
        [DataMember(Name = "id", EmitDefaultValue = false, IsRequired = false)]
70
        public string Id { get; set; }
71
72
        /// <summary>
73
        /// Gets or sets the labels.
74
        /// </summary>
75
        [DataMember(Name = "labels", EmitDefaultValue = false, IsRequired = false)]
76
        public HighchartAxisLabels Labels { get; set; }
77
78
        /// <summary>
79
        /// Gets or sets the line color.
80
        /// </summary>
81
        [DataMember(Name = "lineColor", EmitDefaultValue = false, IsRequired = false)]
82
        public string LineColor { get; set; }
83
84
        /// <summary>
85
        /// Gets or sets the line width.
86
        /// </summary>
87
        [DataMember(Name = "lineWidth", EmitDefaultValue = false, IsRequired = false)]
88
        public int LineWidth { get; set; }
89
90
        /// <summary>
91
        /// Gets or sets the linked to value.
92
        /// </summary>
93
        [DataMember(Name = "linkedTo", EmitDefaultValue = false, IsRequired = false)]
94
        public int LinkedTo { get; set; }
95
96
        /// <summary>
97
        /// Gets or sets the maximum.
98
        /// </summary>
99
        [DataMember(Name = "max", EmitDefaultValue = false, IsRequired = false)]
100
        public int? Max { get; set; }
101
102
        /// <summary>
103
        /// Gets or sets the maximum padding.
104
        /// </summary>
105
        [DataMember(Name = "maxPadding", EmitDefaultValue = false, IsRequired = false)]
106
        public int MaxPadding { get; set; }
107
108
        /// <summary>
109
        /// Gets or sets the maximum zoom.
110
        /// </summary>
111
        [DataMember(Name = "maxZoom", EmitDefaultValue = false, IsRequired = false)]
112
        public int MaxZoom { get; set; }
113
114
        /// <summary>
115
        /// Gets or sets the minimum.
116
        /// </summary>
117
        [DataMember(Name = "min", EmitDefaultValue = false, IsRequired = false)]
118
        public int? Min { get; set; }
119
120
        /// <summary>
121
        /// Gets or sets the minimum padding.
122
        /// </summary>
123
        [DataMember(Name = "minPadding", EmitDefaultValue = false, IsRequired = false)]
124
        public int MinPadding { get; set; }
125
126
        /// <summary>
127
        /// Gets or sets the minimum range.
128
        /// </summary>
129
        [DataMember(Name = "minRange", EmitDefaultValue = false, IsRequired = false)]
130
        public int MinRange { get; set; }
131
132
        /// <summary>
133
        /// Gets or sets the minimum tick interval.
134
        /// </summary>
135
        [DataMember(Name = "minTickInterval", EmitDefaultValue = false, IsRequired = false)]
136
        public int MinTickInterval { get; set; }
137
138
        /// <summary>
139
        /// Gets or sets the minor grid line color.
140
        /// </summary>
141
        [DataMember(Name = "minorGridLineColor", EmitDefaultValue = false, IsRequired = false)]
142
        public string MinorGridLineColor { get; set; }
143
144
        /// <summary>
145
        /// Gets or sets the minor grid line dash color.
146
        /// </summary>
147
        [DataMember(Name = "minorGridLineDashColor", EmitDefaultValue = false, IsRequired = false)]
148
        public string MinorGridLineDashColor { get; set; }
149
150
        /// <summary>
151
        /// Gets or sets the minor grid line width.
152
        /// </summary>
153
        [DataMember(Name = "minorGridLineWidth", EmitDefaultValue = false, IsRequired = false)]
154
        public int MinorGridLineWidth { get; set; }
155
156
        /// <summary>
157
        /// Gets or sets the minor tick color.
158
        /// </summary>
159
        [DataMember(Name = "minorTickColor", EmitDefaultValue = false, IsRequired = false)]
160
        public string MinorTickColor { get; set; }
161
162
        /// <summary>
163
        /// Gets or sets the minor tick interval.
164
        /// </summary>
165
        [DataMember(Name = "minorTickInterval", EmitDefaultValue = false, IsRequired = false)]
166
        public string MinorTickInterval { get; set; }
167
168
        /// <summary>
169
        /// Gets or sets the minor tick length.
170
        /// </summary>
171
        [DataMember(Name = "minorTickLength", EmitDefaultValue = false, IsRequired = false)]
172
        public string MinorTickLength { get; set; }
173
174
        /// <summary>
175
        /// Gets or sets the minor tick position.
176
        /// </summary>
177
        [DataMember(Name = "minorTickPosition", EmitDefaultValue = false, IsRequired = false)]
178
        public string MinorTickPosition { get; set; }
179
180
        /// <summary>
181
        /// Gets or sets the minor tick width.
182
        /// </summary>
183
        [DataMember(Name = "minorTickWidth", EmitDefaultValue = false, IsRequired = false)]
184
        public int MinorTickWidth { get; set; }
185
186
        /// <summary>
187
        /// Gets or sets the offset.
188
        /// </summary>
189
        [DataMember(Name = "offset", EmitDefaultValue = false, IsRequired = false)]
190
        public int Offset { get; set; }
191
192
        /// <summary>
193
        /// Gets or sets a value indicating whether the axis is opposite.
194
        /// </summary>
195
        [DataMember(Name = "opposite", EmitDefaultValue = false, IsRequired = false)]
196
        public bool Opposite { get; set; }
197
        
198
        /// <summary>
199
        /// Gets or sets the plot bands.
200
        /// </summary>
201
        [DataMember(Name = "plotBands", EmitDefaultValue = false, IsRequired = false)]
202
        public IEnumerable<HighchartPlotBand> PlotBands { get; set; }
203
204
        /// <summary>
205
        /// Gets or sets the plot lines.
206
        /// </summary>
207
        [DataMember(Name = "plotLines", EmitDefaultValue = false, IsRequired = false)]
208
        public IEnumerable<HighchartPlotLine> PlotLines { get; set; }
209
210
        /// <summary>
211
        /// Gets or sets a value indicating whether the values are reversed.
212
        /// </summary>
213
        [DataMember(Name = "reversed", EmitDefaultValue = false, IsRequired = false)]
214
        public bool Reversed { get; set; }
215
216
        /// <summary>
217
        /// Gets or sets a value indicating whether to show empty values.
218
        /// </summary>
219
        [DataMember(Name = "showEmpty", EmitDefaultValue = false, IsRequired = false)]
220
        public bool ShowEmpty { get; set; }
221
222
        /// <summary>
223
        /// Gets or sets a value indicating whether to show the first label.
224
        /// </summary>
225
        [DataMember(Name = "showFirstLabel", EmitDefaultValue = false, IsRequired = false)]
226
        public bool ShowFirstLabel { get; set; }
227
228
        /// <summary>
229
        /// Gets or sets a value indicating whether to show the last label.
230
        /// </summary>
231
        [DataMember(Name = "showLastLabel", EmitDefaultValue = false, IsRequired = false)]
232
        public bool ShowLastLabel { get; set; }
233
234
        /// <summary>
235
        /// Gets or sets the start of the week.
236
        /// </summary>
237
        /// <remarks>The value of 0 is Monday.</remarks>
238
        [DataMember(Name = "startOfWeek", EmitDefaultValue = false, IsRequired = false)]
239
        public int StartOfWeek { get; set; }
240
241
        /// <summary>
242
        /// Gets or sets a value indicating whether to start on a tick.
243
        /// </summary>
244
        [DataMember(Name = "startOnTick", EmitDefaultValue = false, IsRequired = false)]
245
        public bool StartOnTick { get; set; }
246
247
        /// <summary>
248
        /// Gets or sets the tick color.
249
        /// </summary>
250
        [DataMember(Name = "tickColor", EmitDefaultValue = false, IsRequired = false)]
251
        public string TickColor { get; set; }
252
253
        /// <summary>
254
        /// Gets or sets the tick interval.
255
        /// </summary>
256
        [DataMember(Name = "tickInterval", EmitDefaultValue = false, IsRequired = false)]
257
        public string TickInterval { get; set; }
258
259
        /// <summary>
260
        /// Gets or sets the tick length.
261
        /// </summary>
262
        [DataMember(Name = "tickLength", EmitDefaultValue = false, IsRequired = false)]
263
        public int TickLength { get; set; }
264
265
        /// <summary>
266
        /// Gets or sets the tick pixel interval.
267
        /// </summary>
268
        [DataMember(Name = "tickPixelInterval", EmitDefaultValue = false, IsRequired = false)]
269
        public string TickPixelInterval { get; set; }
270
271
        /// <summary>
272
        /// Gets or sets the tick position.
273
        /// </summary>
274
        [DataMember(Name = "tickPosition", EmitDefaultValue = false, IsRequired = false)]
275
        public string TickPosition { get; set; }
276
277
        /// <summary>
278
        /// Gets or sets the tick positioner.
279
        /// </summary>
280
        [DataMember(Name = "tickPositioner", EmitDefaultValue = false, IsRequired = false)]
281
        public string TickPositioner { get; set; }
282
283
        /// <summary>
284
        /// Gets or sets the tick positions.
285
        /// </summary>
286
        [DataMember(Name = "tickPositions", EmitDefaultValue = false, IsRequired = false)]
287
        public string TickPositions { get; set; }
288
289
        /// <summary>
290
        /// Gets or sets the tick width.
291
        /// </summary>
292
        [DataMember(Name = "tickWidth", EmitDefaultValue = false, IsRequired = false)]
293
        public string TickWidth { get; set; }
294
295
        /// <summary>
296
        /// Gets or sets the tickmark placement.
297
        /// </summary>
298
        [DataMember(Name = "tickmarkPlacement", EmitDefaultValue = false, IsRequired = false)]
299
        public string TickmarkPlacement { get; set; }
300
301
        /// <summary>
302
        /// Gets or sets the title.
303
        /// </summary>
304
        [DataMember(Name = "title", EmitDefaultValue = false, IsRequired = false)]
305
        public string Title { get; set; }
306
307
        /// <summary>
308
        /// Gets or sets the axis type.
309
        /// </summary>
310
        [DataMember(Name = "type", EmitDefaultValue = false, IsRequired = false)]
311
        public string Type { get; set; }
312
    }
313
}

+ 23 - 0
HighchartAxisEvent.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart axis event.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartAxisEvent
10
    {
11
        /// <summary>
12
        /// Gets or sets a function to handle after setting extremes.
13
        /// </summary>
14
        [DataMember(Name = "afterSetExtremes", EmitDefaultValue = false, IsRequired = false)]
15
        public string AfterSetExtremes { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets a function to set extremes.
19
        /// </summary>
20
        [DataMember(Name = "setExtremes", EmitDefaultValue = false, IsRequired = false)]
21
        public string SetExtremes { get; set; }
22
    }
23
}

+ 95 - 0
HighchartAxisLabels.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart axis labels.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartAxisLabels
10
    {
11
        /// <summary>
12
        /// Gets or sets the align value.
13
        /// </summary>
14
        [DataMember(Name = "align", EmitDefaultValue = false, IsRequired = false)]
15
        public string Align { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets a value indicating whether the label is enabled.
19
        /// </summary>
20
        [DataMember(Name = "enabled", EmitDefaultValue = false, IsRequired = false)]
21
        public bool Enabled { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the format.
25
        /// </summary>
26
        [DataMember(Name = "format", EmitDefaultValue = false, IsRequired = false)]
27
        public string Format { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the formatter.
31
        /// </summary>
32
        [DataMember(Name = "formatter", EmitDefaultValue = false, IsRequired = false)]
33
        public string Formatter { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the maximum number of stagger lines.
37
        /// </summary>
38
        [DataMember(Name = "maxStaggerLines", EmitDefaultValue = false, IsRequired = false)]
39
        public int MaxStaggerLines { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the overflow value.
43
        /// </summary>
44
        [DataMember(Name = "overflow", EmitDefaultValue = false, IsRequired = false)]
45
        public string Overflow { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the rotation.
49
        /// </summary>
50
        [DataMember(Name = "rotation", EmitDefaultValue = false, IsRequired = false)]
51
        public int Rotation { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets the stagger lines value.
55
        /// </summary>
56
        [DataMember(Name = "staggerLines", EmitDefaultValue = false, IsRequired = false)]
57
        public int StaggerLines { get; set; }
58
59
        /// <summary>
60
        /// Gets or sets the step value.
61
        /// </summary>
62
        [DataMember(Name = "step", EmitDefaultValue = false, IsRequired = false)]
63
        public int Step { get; set; }
64
65
        /// <summary>
66
        /// Gets or sets the CSS style.
67
        /// </summary>
68
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
69
        public string Style { get; set; }
70
71
        /// <summary>
72
        /// Gets or sets a value indicating whether to use HTML.
73
        /// </summary>
74
        [DataMember(Name = "useHTML", EmitDefaultValue = false, IsRequired = false)]
75
        public bool UseHTML { get; set; }
76
77
        /// <summary>
78
        /// Gets or sets the X value.
79
        /// </summary>
80
        [DataMember(Name = "x", EmitDefaultValue = false, IsRequired = false)]
81
        public int X { get; set; }
82
83
        /// <summary>
84
        /// Gets or sets the Y value.
85
        /// </summary>
86
        [DataMember(Name = "y", EmitDefaultValue = false, IsRequired = false)]
87
        public int Y { get; set; }
88
        
89
        /// <summary>
90
        /// Gets or sets the z-index.
91
        /// </summary>
92
        [DataMember(Name = "zIndex", EmitDefaultValue = false, IsRequired = false)]
93
        public int ZIndex { get; set; }
94
    }
95
}

+ 29 - 0
HighchartButton.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart button.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartButton
10
    {
11
        /// <summary>
12
        /// Gets or sets the position.
13
        /// </summary>
14
        [DataMember(Name = "Position", EmitDefaultValue = false, IsRequired = false)]
15
        public string Position { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the relative to value.
19
        /// </summary>
20
        [DataMember(Name = "relativeTo", EmitDefaultValue = false, IsRequired = false)]
21
        public string RelativeTo { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the theme.
25
        /// </summary>
26
        [DataMember(Name = "theme", EmitDefaultValue = false, IsRequired = false)]
27
        public string Theme { get; set; }
28
    }
29
}

+ 89 - 0
HighchartButtonOptions.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart button options.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartButtonOptions
10
    {
11
        /// <summary>
12
        /// Gets or sets the alignment.
13
        /// </summary>
14
        [DataMember(Name = "align", EmitDefaultValue = false, IsRequired = false)]
15
        public string Align { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets a value indicating whether the button is enabled.
19
        /// </summary>
20
        [DataMember(Name = "enabled", EmitDefaultValue = false, IsRequired = false)]
21
        public bool Enabled { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the height.
25
        /// </summary>
26
        [DataMember(Name = "height", EmitDefaultValue = false, IsRequired = false)]
27
        public int Height { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the symbol filling.
31
        /// </summary>
32
        [DataMember(Name = "symbolFill", EmitDefaultValue = false, IsRequired = false)]
33
        public string SymbolFill { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the symbol stroke balue.
37
        /// </summary>
38
        [DataMember(Name = "symbolStoke", EmitDefaultValue = false, IsRequired = false)]
39
        public string SymbolStroke { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the symbol stroke width.
43
        /// </summary>
44
        [DataMember(Name = "symbolStrokeWidth", EmitDefaultValue = false, IsRequired = false)]
45
        public int SymbolStrokeWidth { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the X symbol.
49
        /// </summary>
50
        [DataMember(Name = "symbolX", EmitDefaultValue = false, IsRequired = false)]
51
        public double SymbolX { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets the Y symbol.
55
        /// </summary>
56
        [DataMember(Name = "symbolY", EmitDefaultValue = false, IsRequired = false)]
57
        public double SymbolY { get; set; }
58
59
        /// <summary>
60
        /// Gets or sets the text.
61
        /// </summary>
62
        [DataMember(Name = "text", EmitDefaultValue = false, IsRequired = false)]
63
        public string Text { get; set; }
64
65
        /// <summary>
66
        /// Gets or sets the theme.
67
        /// </summary>
68
        [DataMember(Name = "theme", EmitDefaultValue = false, IsRequired = false)]
69
        public string Theme { get; set; }
70
71
        /// <summary>
72
        /// Gets or sets the vertical alignment.
73
        /// </summary>
74
        [DataMember(Name = "verticalAlign", EmitDefaultValue = false, IsRequired = false)]
75
        public string VerticalAlign { get; set; }
76
77
        /// <summary>
78
        /// Gets or sets the width.
79
        /// </summary>
80
        [DataMember(Name = "width", EmitDefaultValue = false, IsRequired = false)]
81
        public int Width { get; set; }
82
83
        /// <summary>
84
        /// Gets or sets the Y value.
85
        /// </summary>
86
        [DataMember(Name = "y", EmitDefaultValue = false, IsRequired = false)]
87
        public int Y { get; set; }
88
    }
89
}

+ 245 - 0
HighchartChart.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart chart.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartChart
10
    {
11
        /// <summary>
12
        /// Gets or sets a value indicating whether to align on the ticks.
13
        /// </summary>
14
        [DataMember(Name = "alignTicks", EmitDefaultValue = false, IsRequired = false)]
15
        public bool AlignTicks { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets a value indicating whether to use animations.
19
        /// </summary>
20
        [DataMember(Name = "animation", EmitDefaultValue = false, IsRequired = false)]
21
        public bool Animation { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the background color.
25
        /// </summary>
26
        [DataMember(Name = "backgroundColor", EmitDefaultValue = false, IsRequired = false)]
27
        public string BackgroundColor { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the border color.
31
        /// </summary>
32
        [DataMember(Name = "borderColor", EmitDefaultValue = false, IsRequired = false)]
33
        public string BorderColor { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the border radius.
37
        /// </summary>
38
        [DataMember(Name = "borderRadius", EmitDefaultValue = false, IsRequired = false)]
39
        public int BorderRadius { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the border width.
43
        /// </summary>
44
        [DataMember(Name = "borderWidth", EmitDefaultValue = false, IsRequired = false)]
45
        public int BorderWidth { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the class name.
49
        /// </summary>
50
        [DataMember(Name = "className", EmitDefaultValue = false, IsRequired = false)]
51
        public string ClassName { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets the default series type.
55
        /// </summary>
56
        [DataMember(Name = "defaultSeriesType", EmitDefaultValue = false, IsRequired = false)]
57
        public string DefaultSeriesType { get; set; }
58
59
        /// <summary>
60
        /// Gets or sets the events.
61
        /// </summary>
62
        [DataMember(Name = "events", EmitDefaultValue = false, IsRequired = false)]
63
        public HighchartChartEvents Events { get; set; }
64
65
        /// <summary>
66
        /// Gets or sets the height.
67
        /// </summary>
68
        [DataMember(Name = "height", EmitDefaultValue = false, IsRequired = false)]
69
        public int Height { get; set; }
70
71
        /// <summary>
72
        /// Gets or sets a value indicating whether to ignore hidden series.
73
        /// </summary>
74
        [DataMember(Name = "ignoreHiddenSeries", EmitDefaultValue = false, IsRequired = false)]
75
        public bool IgnoreHiddenSeries { get; set; }
76
77
        /// <summary>
78
        /// Gets or sets a value indicating the graph is inverted.
79
        /// </summary>
80
        [DataMember(Name = "name", EmitDefaultValue = false, IsRequired = false)]
81
        public bool Inverted { get; set; }
82
83
        /// <summary>
84
        /// Gets or sets the margin.
85
        /// </summary>
86
        [DataMember(Name = "margin", EmitDefaultValue = false, IsRequired = false)]
87
        public int[] Margin { get; set; }
88
89
        /// <summary>
90
        /// Gets or sets the bottom margin.
91
        /// </summary>
92
        [DataMember(Name = "marginBottom", EmitDefaultValue = false, IsRequired = false)]
93
        public int MarginBottom { get; set; }
94
95
        /// <summary>
96
        /// Gets or sets the left margin.
97
        /// </summary>
98
        [DataMember(Name = "marginLeft", EmitDefaultValue = false, IsRequired = false)]
99
        public int MarginLeft { get; set; }
100
101
        /// <summary>
102
        /// Gets or sets the right margin.
103
        /// </summary>
104
        [DataMember(Name = "marginRight", EmitDefaultValue = false, IsRequired = false)]
105
        public int MarginRight { get; set; }
106
107
        /// <summary>
108
        /// Gets or sets the top margin.
109
        /// </summary>
110
        [DataMember(Name = "marginTop", EmitDefaultValue = false, IsRequired = false)]
111
        public string MarginTop { get; set; }
112
113
        /// <summary>
114
        /// Gets or sets the pinch type.
115
        /// </summary>
116
        [DataMember(Name = "pinchType", EmitDefaultValue = false, IsRequired = false)]
117
        public string PinchType { get; set; }
118
119
        /// <summary>
120
        /// Gets or sets the plot background color.
121
        /// </summary>
122
        [DataMember(Name = "plotBackgroundColor", EmitDefaultValue = false, IsRequired = false)]
123
        public string PlotBackgroundColor { get; set; }
124
125
        /// <summary>
126
        /// Gets or sets the plot background image.
127
        /// </summary>
128
        [DataMember(Name = "plotBackgroundImage", EmitDefaultValue = false, IsRequired = false)]
129
        public string PlotBackgroundImage { get; set; }
130
131
        /// <summary>
132
        /// Gets or sets the plot border color.
133
        /// </summary>
134
        [DataMember(Name = "plotBorderColor", EmitDefaultValue = false, IsRequired = false)]
135
        public string PlotBorderColor { get; set; }
136
137
        /// <summary>
138
        /// Gets or sets the plot border width.
139
        /// </summary>
140
        [DataMember(Name = "plotBorderWidth", EmitDefaultValue = false, IsRequired = false)]
141
        public int PlotBorderWidth { get; set; }
142
143
        /// <summary>
144
        /// Gets or sets the plot border shadow.
145
        /// </summary>
146
        [DataMember(Name = "plotBorderShadow", EmitDefaultValue = false, IsRequired = false)]
147
        public bool PlotBorderShadow { get; set; }
148
149
        /// <summary>
150
        /// Gets or sets a value indicating the chart is polar.
151
        /// </summary>
152
        [DataMember(Name = "polar", EmitDefaultValue = false, IsRequired = false)]
153
        public bool Polar { get; set; }
154
155
        /// <summary>
156
        /// Gets or sets a value indicating the chart is reflow.
157
        /// </summary>
158
        [DataMember(Name = "reflow", EmitDefaultValue = false, IsRequired = false)]
159
        public bool Reflow { get; set; }
160
161
        /// <summary>
162
        /// Gets or sets the render to value.
163
        /// </summary>
164
        [DataMember(Name = "renderTo", EmitDefaultValue = false, IsRequired = false)]
165
        public string RenderTo { get; set; }
166
        
167
        /// <summary>
168
        /// Gets or sets the reset zoom button.
169
        /// </summary>
170
        [DataMember(Name = "resetZoomButton", EmitDefaultValue = false, IsRequired = false)]
171
        public HighchartButton ResetZoomButton { get; set; }
172
173
        /// <summary>
174
        /// Gets or sets the selection marker fill.
175
        /// </summary>
176
        [DataMember(Name = "selectionMarkerFill", EmitDefaultValue = false, IsRequired = false)]
177
        public string SelectionMarkerFill { get; set; }
178
179
        /// <summary>
180
        /// Gets or sets a value indicating to use a shadow.
181
        /// </summary>
182
        [DataMember(Name = "shadow", EmitDefaultValue = false, IsRequired = false)]
183
        public bool Shadow { get; set; }
184
185
        /// <summary>
186
        /// Gets or sets a value indicating whether to show the axes.
187
        /// </summary>
188
        [DataMember(Name = "showAxes", EmitDefaultValue = false, IsRequired = false)]
189
        public bool ShowAxes { get; set; }
190
191
        /// <summary>
192
        /// Gets or sets the spacing.
193
        /// </summary>
194
        [DataMember(Name = "spacing", EmitDefaultValue = false, IsRequired = false)]
195
        public int[] Spacing { get; set; }
196
197
        /// <summary>
198
        /// Gets or sets the bottom spacing.
199
        /// </summary>
200
        [DataMember(Name = "spacingBottom", EmitDefaultValue = false, IsRequired = false)]
201
        public int SpacingBottom { get; set; }
202
203
        /// <summary>
204
        /// Gets or sets the left spacing.
205
        /// </summary>
206
        [DataMember(Name = "spacingLeft", EmitDefaultValue = false, IsRequired = false)]
207
        public int SpacingLeft { get; set; }
208
209
        /// <summary>
210
        /// Gets or sets the right spacing.
211
        /// </summary>
212
        [DataMember(Name = "spacingRight", EmitDefaultValue = false, IsRequired = false)]
213
        public int SpacingRight { get; set; }
214
215
        /// <summary>
216
        /// Gets or sets the top spacing.
217
        /// </summary>
218
        [DataMember(Name = "spacingTop", EmitDefaultValue = false, IsRequired = false)]
219
        public int SpacingTop { get; set; }
220
221
        /// <summary>
222
        /// Gets or sets the CSS style.
223
        /// </summary>
224
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
225
        public string Style { get; set; }
226
227
        /// <summary>
228
        /// Gets or sets the chart type.
229
        /// </summary>
230
        [DataMember(Name = "type", EmitDefaultValue = false, IsRequired = false)]
231
        public string Type { get; set; }
232
233
        /// <summary>
234
        /// Gets or sets the width.
235
        /// </summary>
236
        [DataMember(Name = "width", EmitDefaultValue = false, IsRequired = false)]
237
        public int Width { get; set; }
238
239
        /// <summary>
240
        /// Gets or sets the zoom type.
241
        /// </summary>
242
        [DataMember(Name = "zoomType", EmitDefaultValue = false, IsRequired = false)]
243
        public string ZoomType { get; set; }
244
    }
245
}

+ 53 - 0
HighchartChartEvents.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart chart events.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartChartEvents
10
    {
11
        /// <summary>
12
        /// Gets or sets the add series function.
13
        /// </summary>
14
        [DataMember(Name = "addSeries", EmitDefaultValue = false, IsRequired = false)]
15
        public string AddSeries { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the click function.
19
        /// </summary>
20
        [DataMember(Name = "click", EmitDefaultValue = false, IsRequired = false)]
21
        public string Click { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the drill down function.
25
        /// </summary>
26
        [DataMember(Name = "drilldown", EmitDefaultValue = false, IsRequired = false)]
27
        public string DrillDown { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the drill up function.
31
        /// </summary>
32
        [DataMember(Name = "drillup", EmitDefaultValue = false, IsRequired = false)]
33
        public string DrillUp { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the load function.
37
        /// </summary>
38
        [DataMember(Name = "load", EmitDefaultValue = false, IsRequired = false)]
39
        public string Load { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the redraw function.
43
        /// </summary>
44
        [DataMember(Name = "redraw", EmitDefaultValue = false, IsRequired = false)]
45
        public string Redraw { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the selection function.
49
        /// </summary>
50
        [DataMember(Name = "selection", EmitDefaultValue = false, IsRequired = false)]
51
        public string Selection { get; set; }
52
    }
53
}

+ 41 - 0
HighchartCredits.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart credits.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartCredits
10
    {
11
        /// <summary>
12
        /// Gets or sets a value indicating whether the credits are enabled.
13
        /// </summary>
14
        [DataMember(Name = "enabled", EmitDefaultValue = false, IsRequired = false)]
15
        public bool Enabled { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the hyperlink reference.
19
        /// </summary>
20
        [DataMember(Name = "href", EmitDefaultValue = false, IsRequired = false)]
21
        public string Href { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the position.
25
        /// </summary>
26
        [DataMember(Name = "position", EmitDefaultValue = false, IsRequired = false)]
27
        public string Position { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the CSS style.
31
        /// </summary>
32
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
33
        public string Style { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the text.
37
        /// </summary>
38
        [DataMember(Name = "text", EmitDefaultValue = false, IsRequired = false)]
39
        public string Text { get; set; }
40
    }
41
}

+ 137 - 0
HighchartDataLabel.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart data label.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartDataLabel
10
    {
11
        /// <summary>
12
        /// Gets or sets the alignment.
13
        /// </summary>
14
        [DataMember(Name = "align", EmitDefaultValue = false, IsRequired = false)]
15
        public string Align { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the background color.
19
        /// </summary>
20
        [DataMember(Name = "backgroundColor", EmitDefaultValue = false, IsRequired = false)]
21
        public string BackgroundColor { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the border color.
25
        /// </summary>
26
        [DataMember(Name = "borderColor", EmitDefaultValue = false, IsRequired = false)]
27
        public string BorderColor { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the border radius.
31
        /// </summary>
32
        [DataMember(Name = "borderRadius", EmitDefaultValue = false, IsRequired = false)]
33
        public int BorderRadius { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the border width.
37
        /// </summary>
38
        [DataMember(Name = "borderWidth", EmitDefaultValue = false, IsRequired = false)]
39
        public int BorderWidth { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the color.
43
        /// </summary>
44
        [DataMember(Name = "color", EmitDefaultValue = false, IsRequired = false)]
45
        public string Color { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets a value indicating whether to crop.
49
        /// </summary>
50
        [DataMember(Name = "crop", EmitDefaultValue = false, IsRequired = false)]
51
        public bool Crop { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets a value indicating whether the label is enabled.
55
        /// </summary>
56
        [DataMember(Name = "enabled", EmitDefaultValue = false, IsRequired = false)]
57
        public bool Enabled { get; set; }
58
59
        /// <summary>
60
        /// Gets or sets the format.
61
        /// </summary>
62
        [DataMember(Name = "format", EmitDefaultValue = false, IsRequired = false)]
63
        public string Format { get; set; }
64
65
        /// <summary>
66
        /// Gets or sets the formatter.
67
        /// </summary>
68
        [DataMember(Name = "formatter", EmitDefaultValue = false, IsRequired = false)]
69
        public string Formatter { get; set; }
70
71
        /// <summary>
72
        /// Gets or sets a value indicating whether the label is inside.
73
        /// </summary>
74
        [DataMember(Name = "inside", EmitDefaultValue = false, IsRequired = false)]
75
        public bool Inside { get; set; }
76
77
        /// <summary>
78
        /// Gets or sets the overflow.
79
        /// </summary>
80
        [DataMember(Name = "overflow", EmitDefaultValue = false, IsRequired = false)]
81
        public string Overflow { get; set; }
82
83
        /// <summary>
84
        /// Gets or sets the padding.
85
        /// </summary>
86
        [DataMember(Name = "padding", EmitDefaultValue = false, IsRequired = false)]
87
        public int Padding { get; set; }
88
89
        /// <summary>
90
        /// Gets or sets the rotation.
91
        /// </summary>
92
        [DataMember(Name = "rotation", EmitDefaultValue = false, IsRequired = false)]
93
        public int Rotation { get; set; }
94
95
        /// <summary>
96
        /// Gets or sets a value indicating whether to use a shadow.
97
        /// </summary>
98
        [DataMember(Name = "shadow", EmitDefaultValue = false, IsRequired = false)]
99
        public bool Shadow { get; set; }
100
101
        /// <summary>
102
        /// Gets or sets the style.
103
        /// </summary>
104
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
105
        public string Style { get; set; }
106
107
        /// <summary>
108
        /// Gets or sets a value indicating whether to use HTML.
109
        /// </summary>
110
        [DataMember(Name = "useHTML", EmitDefaultValue = false, IsRequired = false)]
111
        public bool UseHTML { get; set; }
112
113
        /// <summary>
114
        /// Gets or sets the vertical alignment.
115
        /// </summary>
116
        [DataMember(Name = "verticalAlign", EmitDefaultValue = false, IsRequired = false)]
117
        public string VerticalAlign { get; set; }
118
119
        /// <summary>
120
        /// Gets or sets the X value.
121
        /// </summary>
122
        [DataMember(Name = "x", EmitDefaultValue = false, IsRequired = false)]
123
        public int X { get; set; }
124
125
        /// <summary>
126
        /// Gets or sets the Y value.
127
        /// </summary>
128
        [DataMember(Name = "y", EmitDefaultValue = false, IsRequired = false)]
129
        public int Y { get; set; }
130
131
        /// <summary>
132
        /// Gets or sets the z-index.
133
        /// </summary>
134
        [DataMember(Name = "zIndex", EmitDefaultValue = false, IsRequired = false)]
135
        public int ZIndex { get; set; }
136
    }
137
}

+ 42 - 0
HighchartDrilldown.cs

1
using System.Collections.Generic;
2
using System.Runtime.Serialization;
3
4
namespace RevolvingCow.Highcharts
5
{
6
    /// <summary>
7
    /// Highchart Drilldown.
8
    /// </summary>
9
    [DataContract]
10
    public class HighchartDrilldown
11
    {
12
        /// <summary>
13
        /// Gets or sets the active axis label style.
14
        /// </summary>
15
        [DataMember(Name = "activeAxisLabelStyle", EmitDefaultValue = false, IsRequired = false)]
16
        public string ActiveAxisLabelStyle { get; set; }
17
18
        /// <summary>
19
        /// Gets or sets the active data label style.
20
        /// </summary>
21
        [DataMember(Name = "activeDataLabelStye", EmitDefaultValue = false, IsRequired = false)]
22
        public string ActiveDataLabelStyle { get; set; }
23
24
        /// <summary>
25
        /// Gets or sets a value indicating whether to use an animation.
26
        /// </summary>
27
        [DataMember(Name = "animation", EmitDefaultValue = false, IsRequired = false)]
28
        public bool Animation { get; set; }
29
30
        /// <summary>
31
        /// Gets or sets the drill up button.
32
        /// </summary>
33
        [DataMember(Name = "drillUpButton", EmitDefaultValue = false, IsRequired = false)]
34
        public HighchartButton DrillUpButton { get; set; }
35
36
        /// <summary>
37
        /// Gets or sets the series.
38
        /// </summary>
39
        [DataMember(Name = "series", EmitDefaultValue = false, IsRequired = false)]
40
        public IEnumerable<HighchartSeries> Series { get; set; }
41
    }
42
}

+ 77 - 0
HighchartExporting.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highclass exporting.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartExporting
10
    {
11
        /// <summary>
12
        /// Gets or sets the buttons.
13
        /// </summary>
14
        [DataMember(Name = "buttons", EmitDefaultValue = false, IsRequired = false)]
15
        public HighchartExportingButtons Buttons { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the chart options.
19
        /// </summary>
20
        [DataMember(Name = "chartOptions", EmitDefaultValue = false, IsRequired = false)]
21
        public string ChartOptions { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets a value indicating whether exporting is enabled.
25
        /// </summary>
26
        [DataMember(Name = "enabled", EmitDefaultValue = false, IsRequired = false)]
27
        public bool Enabled { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the file name.
31
        /// </summary>
32
        [DataMember(Name = "filename", EmitDefaultValue = false, IsRequired = false)]
33
        public string Filename { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the form attributes.
37
        /// </summary>
38
        [DataMember(Name = "formAttributes", EmitDefaultValue = false, IsRequired = false)]
39
        public string FormAttributes { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the scale.
43
        /// </summary>
44
        [DataMember(Name = "scale", EmitDefaultValue = false, IsRequired = false)]
45
        public int Scale { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the source height.
49
        /// </summary>
50
        [DataMember(Name = "sourceHeight", EmitDefaultValue = false, IsRequired = false)]
51
        public int SourceHeight { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets the source width.
55
        /// </summary>
56
        [DataMember(Name = "sourceWidth", EmitDefaultValue = false, IsRequired = false)]
57
        public int SourceWidth { get; set; }
58
59
        /// <summary>
60
        /// Gets or sets the export type.
61
        /// </summary>
62
        [DataMember(Name = "type", EmitDefaultValue = false, IsRequired = false)]
63
        public string Type { get; set; }
64
65
        /// <summary>
66
        /// Gets or sets the URL.
67
        /// </summary>
68
        [DataMember(Name = "url", EmitDefaultValue = false, IsRequired = false)]
69
        public string Url { get; set; }
70
71
        /// <summary>
72
        /// Gets or sets the width.
73
        /// </summary>
74
        [DataMember(Name = "width", EmitDefaultValue = false, IsRequired = false)]
75
        public int Width { get; set; }
76
    }
77
}

+ 17 - 0
HighchartExportingButtons.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart exporting buttons.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartExportingButtons
10
    {
11
        /// <summary>
12
        /// Gets or sets the context button.
13
        /// </summary>
14
        [DataMember(Name = "contextButton", EmitDefaultValue = false, IsRequired = false)]
15
        public HighchartExportingContextButton ContextButton { get; set; }
16
    }
17
}

+ 30 - 0
HighchartExportingContextButton.cs

1
using System.Collections.Generic;
2
using System.Runtime.Serialization;
3
4
namespace RevolvingCow.Highcharts
5
{
6
    /// <summary>
7
    /// Highchart exporting context button.
8
    /// </summary>
9
    [DataContract]
10
    public class HighchartExportingContextButton : HighchartButtonOptions
11
    {
12
        /// <summary>
13
        /// Gets or sets the menu items.
14
        /// </summary>
15
        [DataMember(Name = "menuItems", EmitDefaultValue = false, IsRequired = false)]
16
        public IEnumerable<string> MenuItems { get; set; }
17
18
        /// <summary>
19
        /// Gets or sets the OnClick function.
20
        /// </summary>
21
        [DataMember(Name = "onclick", EmitDefaultValue = false, IsRequired = false)]
22
        public string OnClick { get; set; }
23
24
        /// <summary>
25
        /// Gets or sets the symbol size.
26
        /// </summary>
27
        [DataMember(Name = "symbolSize", EmitDefaultValue = false, IsRequired = false)]
28
        public int SymbolSize { get; set; }
29
    }
30
}

+ 65 - 0
HighchartLabel.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart label.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartLabel
10
    {
11
        /// <summary>
12
        /// Gets or sets the alignment.
13
        /// </summary>
14
        [DataMember(Name = "align", EmitDefaultValue = false, IsRequired = false)]
15
        public string Align { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the rotation.
19
        /// </summary>
20
        [DataMember(Name = "rotation", EmitDefaultValue = false, IsRequired = false)]
21
        public int Rotation { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the style.
25
        /// </summary>
26
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
27
        public string Style { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the text.
31
        /// </summary>
32
        [DataMember(Name = "text", EmitDefaultValue = false, IsRequired = false)]
33
        public string Text { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the text alignment.
37
        /// </summary>
38
        [DataMember(Name = "textAlign", EmitDefaultValue = false, IsRequired = false)]
39
        public string TextAlign { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets a value indicating whether to use HTML.
43
        /// </summary>
44
        [DataMember(Name = "useHTML", EmitDefaultValue = false, IsRequired = false)]
45
        public bool UseHTML { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the vertical alignment.
49
        /// </summary>
50
        [DataMember(Name = "verticalAlign", EmitDefaultValue = false, IsRequired = false)]
51
        public string VerticalAlign { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets the X value.
55
        /// </summary>
56
        [DataMember(Name = "x", EmitDefaultValue = false, IsRequired = false)]
57
        public int X { get; set; }
58
59
        /// <summary>
60
        /// Gets or sets the Y value.
61
        /// </summary>
62
        [DataMember(Name = "y", EmitDefaultValue = false, IsRequired = false)]
63
        public int Y { get; set; }
64
    }
65
}

+ 23 - 0
HighchartLabelItem.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart label item.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartLabelItem
10
    {
11
        /// <summary>
12
        /// Gets or sets the HTML.
13
        /// </summary>
14
        [DataMember(Name = "html", EmitDefaultValue = false, IsRequired = false)]
15
        public string Html { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the CSS style.
19
        /// </summary>
20
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
21
        public string Style { get; set; }
22
    }
23
}

+ 24 - 0
HighchartLabels.cs

1
using System.Collections.Generic;
2
using System.Runtime.Serialization;
3
4
namespace RevolvingCow.Highcharts
5
{
6
    /// <summary>
7
    /// Highchart labels.
8
    /// </summary>
9
    [DataContract]
10
    public class HighchartLabels
11
    {
12
        /// <summary>
13
        /// Gets or sets the items.
14
        /// </summary>
15
        [DataMember(Name = "items", EmitDefaultValue = false, IsRequired = false)]
16
        public IEnumerable<HighchartLabelItem> Items { get; set; }
17
18
        /// <summary>
19
        /// Gets or sets the CSS style.
20
        /// </summary>
21
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
22
        public string Style { get; set; }
23
    }
24
}

+ 227 - 0
HighchartLegend.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart legend.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartLegend
10
    {
11
        /// <summary>
12
        /// Gets or sets the alignment.
13
        /// </summary>
14
        [DataMember(Name = "align", EmitDefaultValue = false, IsRequired = false)]
15
        public string Align { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the background color.
19
        /// </summary>
20
        [DataMember(Name = "backgroundColor", EmitDefaultValue = false, IsRequired = false)]
21
        public string BackgroundColor { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the border color.
25
        /// </summary>
26
        [DataMember(Name = "borderColor", EmitDefaultValue = false, IsRequired = false)]
27
        public string BorderColor { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the border radius.
31
        /// </summary>
32
        [DataMember(Name = "borderRadius", EmitDefaultValue = false, IsRequired = false)]
33
        public int BorderRadius { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the border width.
37
        /// </summary>
38
        [DataMember(Name = "borderWidth", EmitDefaultValue = false, IsRequired = false)]
39
        public int BorderWidth { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets a value indicating whether the legend is enabled.
43
        /// </summary>
44
        [DataMember(Name = "enabled", EmitDefaultValue = false, IsRequired = false)]
45
        public bool Enabled { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets a value indicating whether the legend should float.
49
        /// </summary>
50
        [DataMember(Name = "floating", EmitDefaultValue = false, IsRequired = false)]
51
        public bool Floating { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets the item distance.
55
        /// </summary>
56
        [DataMember(Name = "itemDistance", EmitDefaultValue = false, IsRequired = false)]
57
        public int ItemDistance { get; set; }
58
59
        /// <summary>
60
        /// Gets or sets the item hidden style.
61
        /// </summary>
62
        [DataMember(Name = "itemHiddenStyle", EmitDefaultValue = false, IsRequired = false)]
63
        public string ItemHiddenStyle { get; set; }
64
65
        /// <summary>
66
        /// Gets or sets the item hover style.
67
        /// </summary>
68
        [DataMember(Name = "itemHoverStyle", EmitDefaultValue = false, IsRequired = false)]
69
        public string ItemHoverStyle { get; set; }
70
71
        /// <summary>
72
        /// Gets or sets the item margin bottom.
73
        /// </summary>
74
        [DataMember(Name = "itemMarginBottom", EmitDefaultValue = false, IsRequired = false)]
75
        public int ItemMarginBottom { get; set; }
76
77
        /// <summary>
78
        /// Gets or sets the item margin top.
79
        /// </summary>
80
        [DataMember(Name = "itemMarginTop", EmitDefaultValue = false, IsRequired = false)]
81
        public int ItemMarginTop { get; set; }
82
83
        /// <summary>
84
        /// Gets or sets the item style.
85
        /// </summary>
86
        [DataMember(Name = "itemStyle", EmitDefaultValue = false, IsRequired = false)]
87
        public string ItemStyle { get; set; }
88
89
        /// <summary>
90
        /// Gets or sets the item width.
91
        /// </summary>
92
        [DataMember(Name = "itemWidth", EmitDefaultValue = false, IsRequired = false)]
93
        public int ItemWidth { get; set; }
94
95
        /// <summary>
96
        /// Gets or sets the label format.
97
        /// </summary>
98
        [DataMember(Name = "labelFormat", EmitDefaultValue = false, IsRequired = false)]
99
        public string LabelFormat { get; set; }
100
101
        /// <summary>
102
        /// Gets or sets the label formatter.
103
        /// </summary>
104
        [DataMember(Name = "labelFormatter", EmitDefaultValue = false, IsRequired = false)]
105
        public string LabelFormatter { get; set; }
106
107
        /// <summary>
108
        /// Gets or sets the layout.
109
        /// </summary>
110
        [DataMember(Name = "layout", EmitDefaultValue = false, IsRequired = false)]
111
        public string Layout { get; set; }
112
113
        /// <summary>
114
        /// Gets or sets the line height.
115
        /// </summary>
116
        [DataMember(Name = "lineHeight", EmitDefaultValue = false, IsRequired = false)]
117
        public int LineHeight { get; set; }
118
119
        /// <summary>
120
        /// Gets or sets the margin.
121
        /// </summary>
122
        [DataMember(Name = "margin", EmitDefaultValue = false, IsRequired = false)]
123
        public int Margin { get; set; }
124
125
        /// <summary>
126
        /// Gets or sets the maximum height.
127
        /// </summary>
128
        [DataMember(Name = "maxHeight", EmitDefaultValue = false, IsRequired = false)]
129
        public int MaxHeight { get; set; }
130
131
        /// <summary>
132
        /// Gets or sets the navigation.
133
        /// </summary>
134
        [DataMember(Name = "navigation", EmitDefaultValue = false, IsRequired = false)]
135
        public HighchartLegendNavigation Navigation { get; set; }
136
137
        /// <summary>
138
        /// Gets or sets the padding.
139
        /// </summary>
140
        [DataMember(Name = "padding", EmitDefaultValue = false, IsRequired = false)]
141
        public int Padding { get; set; }
142
143
        /// <summary>
144
        /// Gets or sets a value whether the legend is reversed.
145
        /// </summary>
146
        [DataMember(Name = "reversed", EmitDefaultValue = false, IsRequired = false)]
147
        public bool Reversed { get; set; }
148
149
        /// <summary>
150
        /// Gets or sets a value whether to use right-to-left text.
151
        /// </summary>
152
        [DataMember(Name = "rtl", EmitDefaultValue = false, IsRequired = false)]
153
        public bool Rtl { get; set; }
154
155
        /// <summary>
156
        /// Gets or sets a value indicating whether to use a shadow.
157
        /// </summary>
158
        [DataMember(Name = "shadow", EmitDefaultValue = false, IsRequired = false)]
159
        public bool Shadow { get; set; }
160
161
        /// <summary>
162
        /// Gets or sets the style.
163
        /// </summary>
164
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
165
        public string Style { get; set; }
166
167
        /// <summary>
168
        /// Gets or sets the symbol height.
169
        /// </summary>
170
        [DataMember(Name = "symbolHeight", EmitDefaultValue = false, IsRequired = false)]
171
        public int SymbolHeight { get; set; }
172
173
        /// <summary>
174
        /// Gets or sets the symbol padding.
175
        /// </summary>
176
        [DataMember(Name = "symbolPadding", EmitDefaultValue = false, IsRequired = false)]
177
        public int SymbolPadding { get; set; }
178
179
        /// <summary>
180
        /// Gets or sets the symbol radius.
181
        /// </summary>
182
        [DataMember(Name = "symbolRadius", EmitDefaultValue = false, IsRequired = false)]
183
        public int SymbolRadius { get; set; }
184
185
        /// <summary>
186
        /// Gets or sets the symbol width.
187
        /// </summary>
188
        [DataMember(Name = "symbolWidth", EmitDefaultValue = false, IsRequired = false)]
189
        public int SymbolWidth { get; set; }
190
191
        /// <summary>
192
        /// Gets or sets the title.
193
        /// </summary>
194
        [DataMember(Name = "title", EmitDefaultValue = false, IsRequired = false)]
195
        public HighchartLegendTitle Title { get; set; }
196
197
        /// <summary>
198
        /// Gets or sets a value indicating whether to use HTML.
199
        /// </summary>
200
        [DataMember(Name = "useHTML", EmitDefaultValue = false, IsRequired = false)]
201
        public bool UseHTML { get; set; }
202
203
        /// <summary>
204
        /// Gets or sets the vertical alignment.
205
        /// </summary>
206
        [DataMember(Name = "verticalAlign", EmitDefaultValue = false, IsRequired = false)]
207
        public string VerticalAlign { get; set; }
208
209
        /// <summary>
210
        /// Gets or sets the width.
211
        /// </summary>
212
        [DataMember(Name = "width", EmitDefaultValue = false, IsRequired = false)]
213
        public int Width { get; set; }
214
215
        /// <summary>
216
        /// Gets or sets the X value.
217
        /// </summary>
218
        [DataMember(Name = "x", EmitDefaultValue = false, IsRequired = false)]
219
        public int X { get; set; }
220
221
        /// <summary>
222
        /// Gets or sets the Y value.
223
        /// </summary>
224
        [DataMember(Name = "y", EmitDefaultValue = false, IsRequired = false)]
225
        public int Y { get; set; }
226
    }
227
}

+ 41 - 0
HighchartLegendNavigation.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart legend navigation.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartLegendNavigation
10
    {
11
        /// <summary>
12
        /// Gets or sets the active color.
13
        /// </summary>
14
        [DataMember(Name = "activeColor", EmitDefaultValue = false, IsRequired = false)]
15
        public string ActiveColor { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets a value indicatingg whether to use animation.
19
        /// </summary>
20
        [DataMember(Name = "animation", EmitDefaultValue = false, IsRequired = false)]
21
        public bool Animation { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the arrow size.
25
        /// </summary>
26
        [DataMember(Name = "arrowSize", EmitDefaultValue = false, IsRequired = false)]
27
        public int ArrowSize { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the inactive color.
31
        /// </summary>
32
        [DataMember(Name = "inactiveColor", EmitDefaultValue = false, IsRequired = false)]
33
        public string InactiveColor { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the CSS style.
37
        /// </summary>
38
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
39
        public string Style { get; set; }
40
    }
41
}

+ 23 - 0
HighchartLegendTitle.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart legend title.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartLegendTitle
10
    {
11
        /// <summary>
12
        /// Gets or sets the CSS style.
13
        /// </summary>
14
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
15
        public string Style { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the text.
19
        /// </summary>
20
        [DataMember(Name = "text", EmitDefaultValue = false, IsRequired = false)]
21
        public string Text { get; set; }
22
    }
23
}

+ 35 - 0
HighchartLoading.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart loading.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartLoading
10
    {
11
        /// <summary>
12
        /// Gets or sets the hide duration.
13
        /// </summary>
14
        [DataMember(Name = "hideDuration", EmitDefaultValue = false, IsRequired = false)]
15
        public int HideDuration { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the label style.
19
        /// </summary>
20
        [DataMember(Name = "labelStyle", EmitDefaultValue = false, IsRequired = false)]
21
        public string LabelStyle { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the show duration.
25
        /// </summary>
26
        [DataMember(Name = "showDuration", EmitDefaultValue = false, IsRequired = false)]
27
        public int ShowDuration { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the CSS style.
31
        /// </summary>
32
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
33
        public string Style { get; set; }
34
    }
35
}

+ 35 - 0
HighchartNavigation.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart navigation.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartNavigation
10
    {
11
        /// <summary>
12
        /// Gets or sets the button options.
13
        /// </summary>
14
        [DataMember(Name = "buttonOptions", EmitDefaultValue = false, IsRequired = false)]
15
        public HighchartButtonOptions ButtonOptions { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the menu item hover style.
19
        /// </summary>
20
        [DataMember(Name = "menuItemHoverStyle", EmitDefaultValue = false, IsRequired = false)]
21
        public string MenuItemHoverStyle { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the menu item style.
25
        /// </summary>
26
        [DataMember(Name = "menuItemStyle", EmitDefaultValue = false, IsRequired = false)]
27
        public string MenuItemStyle { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the menu style.
31
        /// </summary>
32
        [DataMember(Name = "menuStyle", EmitDefaultValue = false, IsRequired = false)]
33
        public string MenuStyle { get; set; }
34
    }
35
}

+ 13 - 0
HighchartNoData.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart no data.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartNoData
10
    {
11
        // Stub.
12
    }
13
}

+ 35 - 0
HighchartPane.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart pane.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartPane
10
    {
11
        /// <summary>
12
        /// Gets or sets the background.
13
        /// </summary>
14
        [DataMember(Name = "background", EmitDefaultValue = false, IsRequired = false)]
15
        public string Background { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the center.
19
        /// </summary>
20
        [DataMember(Name = "center", EmitDefaultValue = false, IsRequired = false)]
21
        public string[] Center { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the end angle.
25
        /// </summary>
26
        [DataMember(Name = "endAngle", EmitDefaultValue = false, IsRequired = false)]
27
        public int EndAngle { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the start angle.
31
        /// </summary>
32
        [DataMember(Name = "startAngle", EmitDefaultValue = false, IsRequired = false)]
33
        public int StartAngle { get; set; }
34
    }
35
}

+ 53 - 0
HighchartPlotBand.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart plot band.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartPlotBand
10
    {
11
        /// <summary>
12
        /// Gets or sets the color.
13
        /// </summary>
14
        [DataMember(Name = "color", EmitDefaultValue = false, IsRequired = false)]
15
        public string Color { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the events.
19
        /// </summary>
20
        [DataMember(Name = "events", EmitDefaultValue = false, IsRequired = false)]
21
        public string Events { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the from value.
25
        /// </summary>
26
        [DataMember(Name = "from", EmitDefaultValue = false, IsRequired = false)]
27
        public int From { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the identifier.
31
        /// </summary>
32
        [DataMember(Name = "id", EmitDefaultValue = false, IsRequired = false)]
33
        public string Id { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the label.
37
        /// </summary>
38
        [DataMember(Name = "label", EmitDefaultValue = false, IsRequired = false)]
39
        public HighchartLabel Label { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the to value.
43
        /// </summary>
44
        [DataMember(Name = "to", EmitDefaultValue = false, IsRequired = false)]
45
        public int To { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the z-index.
49
        /// </summary>
50
        [DataMember(Name = "zIndex", EmitDefaultValue = false, IsRequired = false)]
51
        public int ZIndex { get; set; }
52
    }
53
}

+ 59 - 0
HighchartPlotLine.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart plot line.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartPlotLine
10
    {
11
        /// <summary>
12
        /// Gets or sets the color.
13
        /// </summary>
14
        [DataMember(Name = "color", EmitDefaultValue = false, IsRequired = false)]
15
        public string Color { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the dash style.
19
        /// </summary>
20
        [DataMember(Name = "dashStyle", EmitDefaultValue = false, IsRequired = false)]
21
        public string DashStyle { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the events.
25
        /// </summary>
26
        [DataMember(Name = "events", EmitDefaultValue = false, IsRequired = false)]
27
        public string Events { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the identifier.
31
        /// </summary>
32
        [DataMember(Name = "id", EmitDefaultValue = false, IsRequired = false)]
33
        public string Id { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the label.
37
        /// </summary>
38
        [DataMember(Name = "label", EmitDefaultValue = false, IsRequired = false)]
39
        public HighchartLabel Label { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the value.
43
        /// </summary>
44
        [DataMember(Name = "value", EmitDefaultValue = false, IsRequired = false)]
45
        public int Value { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the width.
49
        /// </summary>
50
        [DataMember(Name = "width", EmitDefaultValue = false, IsRequired = false)]
51
        public int Width { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets the z-index.
55
        /// </summary>
56
        [DataMember(Name = "zIndex", EmitDefaultValue = false, IsRequired = false)]
57
        public int ZIndex { get; set; }
58
    }
59
}

+ 13 - 0
HighchartPlotOptions.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart plot options.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartPlotOptions
10
    {
11
        // Stub.
12
    }
13
}

+ 78 - 0
HighchartSeries.cs

1
using System.Collections.Generic;
2
using System.Runtime.Serialization;
3
4
namespace RevolvingCow.Highcharts
5
{
6
    /// <summary>
7
    /// Highchart series.
8
    /// </summary>
9
    [DataContract]
10
    public class HighchartSeries
11
    {
12
        /// <summary>
13
        /// Gets or sets the data.
14
        /// </summary>
15
        [DataMember(Name = "Data", EmitDefaultValue = false, IsRequired = false)]
16
        public IEnumerable<HighchartSeriesData> Data { get; set; }
17
18
        /// <summary>
19
        /// Gets or sets the data parser.
20
        /// </summary>
21
        [DataMember(Name = "dataParser", EmitDefaultValue = false, IsRequired = false)]
22
        public string DataParser { get; set; }
23
24
        /// <summary>
25
        /// Gets or sets the data URL.
26
        /// </summary>
27
        [DataMember(Name = "dataURL", EmitDefaultValue = false, IsRequired = false)]
28
        public string DataURL { get; set; }
29
30
        /// <summary>
31
        /// Gets or sets the index.
32
        /// </summary>
33
        [DataMember(Name = "index", EmitDefaultValue = false, IsRequired = false)]
34
        public int Index { get; set; }
35
36
        /// <summary>
37
        /// Gets or sets the legend index.
38
        /// </summary>
39
        [DataMember(Name = "legendIndex", EmitDefaultValue = false, IsRequired = false)]
40
        public int LegendIndex { get; set; }
41
42
        /// <summary>
43
        /// Gets or sets the series name.
44
        /// </summary>
45
        [DataMember(Name = "name", EmitDefaultValue = false, IsRequired = false)]
46
        public string Name { get; set; }
47
48
        /// <summary>
49
        /// Gets or sets the stack.
50
        /// </summary>
51
        [DataMember(Name = "stack", EmitDefaultValue = false, IsRequired = false)]
52
        public string Stack { get; set; }
53
54
        /// <summary>
55
        /// Gets or sets the series type.
56
        /// </summary>
57
        [DataMember(Name = "type", EmitDefaultValue = false, IsRequired = false)]
58
        public string Type { get; set; }
59
60
        /// <summary>
61
        /// Gets or sets the x-axis.
62
        /// </summary>
63
        [DataMember(Name = "xAxis", EmitDefaultValue = false, IsRequired = false)]
64
        public string XAxis { get; set; }
65
66
        /// <summary>
67
        /// Gets or sets the y-axis.
68
        /// </summary>
69
        [DataMember(Name = "yAxis", EmitDefaultValue = false, IsRequired = false)]
70
        public string YAxis { get; set; }
71
72
        /// <summary>
73
        /// Gets or sets the z-index.
74
        /// </summary>
75
        [DataMember(Name = "zIndex", EmitDefaultValue = false, IsRequired = false)]
76
        public int ZIndex { get; set; }
77
    }
78
}

+ 77 - 0
HighchartSeriesData.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart series data.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartSeriesData
10
    {
11
        /// <summary>
12
        /// Gets or sets the color.
13
        /// </summary>
14
        [DataMember(Name = "color", EmitDefaultValue = false, IsRequired = false)]
15
        public string Color { get; set; }
16
        
17
        /// <summary>
18
        /// Gets or sets the data labels.
19
        /// </summary>
20
        [DataMember(Name = "dataLabels", EmitDefaultValue = false, IsRequired = false)]
21
        public HighchartDataLabel DataLabels { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the  drill down.
25
        /// </summary>
26
        [DataMember(Name = "drilldown", EmitDefaultValue = false, IsRequired = false)]
27
        public string Drilldown { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the events.
31
        /// </summary>
32
        [DataMember(Name = "events", EmitDefaultValue = false, IsRequired = false)]
33
        public HighchartSeriesDataEvent Events { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the identifier.
37
        /// </summary>
38
        [DataMember(Name = "id", EmitDefaultValue = false, IsRequired = false)]
39
        public string Id { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the legen index.
43
        /// </summary>
44
        [DataMember(Name = "legendIndex", EmitDefaultValue = false, IsRequired = false)]
45
        public int LegendIndex { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the marker.
49
        /// </summary>
50
        [DataMember(Name = "marker", EmitDefaultValue = false, IsRequired = false)]
51
        public HighchartSeriesDataMarker Marker { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets the name.
55
        /// </summary>
56
        [DataMember(Name = "name", EmitDefaultValue = false, IsRequired = false)]
57
        public string Name { get; set; }
58
59
        /// <summary>
60
        /// Gets or sets a value indicating whether the data is sliced.
61
        /// </summary>
62
        [DataMember(Name = "sliced", EmitDefaultValue = false, IsRequired = false)]
63
        public bool Sliced { get; set; }
64
65
        /// <summary>
66
        /// Gets or sets the X value.
67
        /// </summary>
68
        [DataMember(Name = "x", EmitDefaultValue = false, IsRequired = false)]
69
        public int X { get; set; }
70
        
71
        /// <summary>
72
        /// Gets or sets the Y value.
73
        /// </summary>
74
        [DataMember(Name = "y", EmitDefaultValue = false, IsRequired = false)]
75
        public int Y { get; set; }
76
    }
77
}

+ 53 - 0
HighchartSeriesDataEvent.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart series data event.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartSeriesDataEvent
10
    {
11
        /// <summary>
12
        /// Gets or sets the click function.
13
        /// </summary>
14
        [DataMember(Name = "click", EmitDefaultValue = false, IsRequired = false)]
15
        public string Click { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the mouse out function.
19
        /// </summary>
20
        [DataMember(Name = "mouseOut", EmitDefaultValue = false, IsRequired = false)]
21
        public string MouseOut { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the mouse over function.
25
        /// </summary>
26
        [DataMember(Name = "mouseOver", EmitDefaultValue = false, IsRequired = false)]
27
        public string MouseOver { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the remove function.
31
        /// </summary>
32
        [DataMember(Name = "remove", EmitDefaultValue = false, IsRequired = false)]
33
        public string Remove { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the select function.
37
        /// </summary>
38
        [DataMember(Name = "select", EmitDefaultValue = false, IsRequired = false)]
39
        public string Select { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the unselect function.
43
        /// </summary>
44
        [DataMember(Name = "unselect", EmitDefaultValue = false, IsRequired = false)]
45
        public string Unselect { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the update function.
49
        /// </summary>
50
        [DataMember(Name = "update", EmitDefaultValue = false, IsRequired = false)]
51
        public string Update { get; set; }
52
    }
53
}

+ 23 - 0
HighchartSeriesDataMarker.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart series data marker.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartSeriesDataMarker : HighchartState
10
    {
11
        /// <summary>
12
        /// Gets or sets the states.
13
        /// </summary>
14
        [DataMember(Name = "states", EmitDefaultValue = false, IsRequired = false)]
15
        public HighchartSeriesDataStates States { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the symbol.
19
        /// </summary>
20
        [DataMember(Name = "symbol", EmitDefaultValue = false, IsRequired = false)]
21
        public string Symbol { get; set; }
22
    }
23
}

+ 23 - 0
HighchartSeriesDataStates.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart series data states.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartSeriesDataStates
10
    {
11
        /// <summary>
12
        /// Gets or sets the hover state.
13
        /// </summary>
14
        [DataMember(Name = "hover", EmitDefaultValue = false, IsRequired = false)]
15
        public HighchartState Hover { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the select state.
19
        /// </summary>
20
        [DataMember(Name = "select", EmitDefaultValue = false, IsRequired = false)]
21
        public HighchartState Select { get; set; }
22
    }
23
}

+ 41 - 0
HighchartState.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart state.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartState
10
    {
11
        /// <summary>
12
        /// Gets or sets a value indicating whether the state is enabled.
13
        /// </summary>
14
        [DataMember(Name = "enabled", EmitDefaultValue = false, IsRequired = false)]
15
        public bool Enabled { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the fill color.
19
        /// </summary>
20
        [DataMember(Name = "fillColor", EmitDefaultValue = false, IsRequired = false)]
21
        public string FillColor { get; set; }
22
        
23
        /// <summary>
24
        /// Gets or sets the line color.
25
        /// </summary>
26
        [DataMember(Name = "lineColor", EmitDefaultValue = false, IsRequired = false)]
27
        public string LineColor { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the line width.
31
        /// </summary>
32
        [DataMember(Name = "lineWidth", EmitDefaultValue = false, IsRequired = false)]
33
        public int LineWidth { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the radius.
37
        /// </summary>
38
        [DataMember(Name = "radius", EmitDefaultValue = false, IsRequired = false)]
39
        public int Radius { get; set; }
40
    }
41
}

+ 59 - 0
HighchartSubtitle.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart subtitle.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartSubtitle
10
    {
11
        /// <summary>
12
        /// Gets or sets the alignment.
13
        /// </summary>
14
        [DataMember(Name = "align", EmitDefaultValue = false, IsRequired = false)]
15
        public string Align { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets a value indicating whether to float the title.
19
        /// </summary>
20
        [DataMember(Name = "floating", EmitDefaultValue = false, IsRequired = false)]
21
        public bool Floating { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the style.
25
        /// </summary>
26
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
27
        public string Style { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the text.
31
        /// </summary>
32
        [DataMember(Name = "text", EmitDefaultValue = false, IsRequired = false)]
33
        public string Text { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets a value indicating whether to use HTML.
37
        /// </summary>
38
        [DataMember(Name = "useHTML", EmitDefaultValue = false, IsRequired = false)]
39
        public bool UseHTML { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the vertical alignment.
43
        /// </summary>
44
        [DataMember(Name = "verticalAlign", EmitDefaultValue = false, IsRequired = false)]
45
        public string VerticalAlign { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets the X value.
49
        /// </summary>
50
        [DataMember(Name = "x", EmitDefaultValue = false, IsRequired = false)]
51
        public int X { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets the Y value.
55
        /// </summary>
56
        [DataMember(Name = "y", EmitDefaultValue = false, IsRequired = false)]
57
        public int? Y { get; set; }
58
    }
59
}

+ 17 - 0
HighchartTitle.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart title.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartTitle : HighchartSubtitle
10
    {
11
        /// <summary>
12
        /// Gets or sets the margin.
13
        /// </summary>
14
        [DataMember(Name = "margin", EmitDefaultValue = false, IsRequired = false)]
15
        public string Margin { get; set; }
16
    }
17
}

+ 155 - 0
HighchartTooltip.cs

1
using System.Runtime.Serialization;
2
3
namespace RevolvingCow.Highcharts
4
{
5
    /// <summary>
6
    /// Highchart tooltip.
7
    /// </summary>
8
    [DataContract]
9
    public class HighchartTooltip
10
    {
11
        /// <summary>
12
        /// Gets or sets a value indicating whether to use animation.
13
        /// </summary>
14
        [DataMember(Name = "animation", EmitDefaultValue = false, IsRequired = false)]
15
        public bool Animation { get; set; }
16
17
        /// <summary>
18
        /// Gets or sets the background color.
19
        /// </summary>
20
        [DataMember(Name = "backgroundColor", EmitDefaultValue = false, IsRequired = false)]
21
        public string BackgroundColor { get; set; }
22
23
        /// <summary>
24
        /// Gets or sets the border color.
25
        /// </summary>
26
        [DataMember(Name = "borderColor", EmitDefaultValue = false, IsRequired = false)]
27
        public string BorderColor { get; set; }
28
29
        /// <summary>
30
        /// Gets or sets the border width.
31
        /// </summary>
32
        [DataMember(Name = "borderWidth", EmitDefaultValue = false, IsRequired = false)]
33
        public int BorderWidth { get; set; }
34
35
        /// <summary>
36
        /// Gets or sets the crosshairs.
37
        /// </summary>
38
        [DataMember(Name = "crosshairs", EmitDefaultValue = false, IsRequired = false)]
39
        public string Crosshairs { get; set; }
40
41
        /// <summary>
42
        /// Gets or sets the date time label formats.
43
        /// </summary>
44
        [DataMember(Name = "dateTimeLabelFormats", EmitDefaultValue = false, IsRequired = false)]
45
        public string DateTimeLabelFormats { get; set; }
46
47
        /// <summary>
48
        /// Gets or sets a value indicating whether the tooltip is enabled.
49
        /// </summary>
50
        [DataMember(Name = "enabled", EmitDefaultValue = false, IsRequired = false)]
51
        public bool Enabled { get; set; }
52
53
        /// <summary>
54
        /// Gets or sets a value indicating whether to follow the pointer as it moves.
55
        /// </summary>
56
        [DataMember(Name = "followPointer", EmitDefaultValue = false, IsRequired = false)]
57
        public bool FollowPointer { get; set; }
58
59
        /// <summary>
60
        /// Gets or sets a value indicating whether to follow the finger as it moves.
61
        /// </summary>
62
        [DataMember(Name = "followTouchMove", EmitDefaultValue = false, IsRequired = false)]
63
        public bool FollowTouchMove { get; set; }
64
65
        /// <summary>
66
        /// Gets or sets the footer format.
67
        /// </summary>
68
        [DataMember(Name = "footerFormat", EmitDefaultValue = false, IsRequired = false)]
69
        public string FooterFormat { get; set; }
70
71
        /// <summary>
72
        /// Gets or sets the formatter function.
73
        /// </summary>
74
        [DataMember(Name = "formatter", EmitDefaultValue = false, IsRequired = false)]
75
        public string Formatter { get; set; }
76
77
        /// <summary>
78
        /// Gets or sets the header format.
79
        /// </summary>
80
        [DataMember(Name = "headerFormat", EmitDefaultValue = false, IsRequired = false)]
81
        public string HeaderFormat { get; set; }
82
83
        /// <summary>
84
        /// Gets or sets the hide delay.
85
        /// </summary>
86
        [DataMember(Name = "hideDelay", EmitDefaultValue = false, IsRequired = false)]
87
        public int HideDelay { get; set; }
88
89
        /// <summary>
90
        /// Gets or sets the point format.
91
        /// </summary>
92
        [DataMember(Name = "pointFormat", EmitDefaultValue = false, IsRequired = false)]
93
        public string PointFormat { get; set; }
94
95
        /// <summary>
96
        /// Gets or sets the positioner function.
97
        /// </summary>
98
        [DataMember(Name = "positioner", EmitDefaultValue = false, IsRequired = false)]
99
        public string Positioner { get; set; }
100
101
        /// <summary>
102
        /// Gets or sets a value indicating whether to use a shadow.
103
        /// </summary>
104
        [DataMember(Name = "shadow", EmitDefaultValue = false, IsRequired = false)]
105
        public bool Shadow { get; set; }
106
107
        /// <summary>
108
        /// Gets or sets a value indicating whether the tooltip is shared.
109
        /// </summary>
110
        [DataMember(Name = "shared", EmitDefaultValue = false, IsRequired = false)]
111
        public bool Shared { get; set; }
112
113
        /// <summary>
114
        /// Gets or sets the snap value.
115
        /// </summary>
116
        [DataMember(Name = "snap", EmitDefaultValue = false, IsRequired = false)]
117
        public int Snap { get; set; }
118
119
        /// <summary>
120
        /// Gets or sets the style.
121
        /// </summary>
122
        [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)]
123
        public string Style { get; set; }
124
125
        /// <summary>
126
        /// Gets or sets a value indicating whether to use HTML.
127
        /// </summary>
128
        [DataMember(Name = "useHTML", EmitDefaultValue = false, IsRequired = false)]
129
        public bool UseHTML { get; set; }
130
131
        /// <summary>
132
        /// Gets or sets the number of decimals to display.
133
        /// </summary>
134
        [DataMember(Name = "valueDecimals", EmitDefaultValue = false, IsRequired = false)]
135
        public int ValueDecimals { get; set; }
136
137
        /// <summary>
138
        /// Gets or sets the value prefix.
139
        /// </summary>
140
        [DataMember(Name = "valuePrefix", EmitDefaultValue = false, IsRequired = false)]
141
        public string ValuePrefix { get; set; }
142
143
        /// <summary>
144
        /// Gets or sets the value suffix.
145
        /// </summary>
146
        [DataMember(Name = "valueSuffix", EmitDefaultValue = false, IsRequired = false)]
147
        public string ValueSuffix { get; set; }
148
149
        /// <summary>
150
        /// Gets or sets the x-axis date format.
151
        /// </summary>
152
        [DataMember(Name = "xDateFormat", EmitDefaultValue = false, IsRequired = false)]
153
        public string XDateFormat { get; set; }
154
    }
155
}

+ 36 - 0
Properties/AssemblyInfo.cs

1
using System.Reflection;
2
using System.Runtime.CompilerServices;
3
using System.Runtime.InteropServices;
4
5
// General Information about an assembly is controlled through the following 
6
// set of attributes. Change these attribute values to modify the information
7
// associated with an assembly.
8
[assembly: AssemblyTitle("RevolvingCow Highcharts")]
9
[assembly: AssemblyDescription("")]
10
[assembly: AssemblyConfiguration("")]
11
[assembly: AssemblyCompany("Revolving Cow, LLC")]
12
[assembly: AssemblyProduct("RevolvingCow Highcharts")]
13
[assembly: AssemblyCopyright("Copyright ©  2014 Revolving Cow, LLC")]
14
[assembly: AssemblyTrademark("")]
15
[assembly: AssemblyCulture("")]
16
17
// Setting ComVisible to false makes the types in this assembly not visible 
18
// to COM components.  If you need to access a type in this assembly from 
19
// COM, set the ComVisible attribute to true on that type.
20
[assembly: ComVisible(false)]
21
22
// The following GUID is for the ID of the typelib if this project is exposed to COM
23
[assembly: Guid("c7a03c67-fb2b-4822-87a3-36b807edb5ab")]
24
25
// Version information for an assembly consists of the following four values:
26
//
27
//      Major Version
28
//      Minor Version 
29
//      Build Number
30
//      Revision
31
//
32
// You can specify all the values or you can default the Build and Revision Numbers 
33
// by using the '*' as shown below:
34
// [assembly: AssemblyVersion("1.0.*")]
35
[assembly: AssemblyVersion("1.0.0.0")]
36
[assembly: AssemblyFileVersion("1.0.0.0")]

+ 90 - 0
RevolvingCow.Highcharts.csproj

1
<?xml version="1.0" encoding="utf-8"?>
2
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <PropertyGroup>
4
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6
    <ProductVersion>8.0.30703</ProductVersion>
7
    <SchemaVersion>2.0</SchemaVersion>
8
    <ProjectGuid>{E4D36A91-B866-4780-AB30-2546DDCB7A8A}</ProjectGuid>
9
    <OutputType>Library</OutputType>
10
    <AppDesignerFolder>Properties</AppDesignerFolder>
11
    <RootNamespace>RevolvingCow.Highcharts</RootNamespace>
12
    <AssemblyName>RevolvingCow.Highcharts</AssemblyName>
13
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14
    <FileAlignment>512</FileAlignment>
15
  </PropertyGroup>
16
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17
    <DebugSymbols>true</DebugSymbols>
18
    <DebugType>full</DebugType>
19
    <Optimize>false</Optimize>
20
    <OutputPath>bin\Debug\</OutputPath>
21
    <DefineConstants>DEBUG;TRACE</DefineConstants>
22
    <ErrorReport>prompt</ErrorReport>
23
    <WarningLevel>4</WarningLevel>
24
  </PropertyGroup>
25
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26
    <DebugType>pdbonly</DebugType>
27
    <Optimize>true</Optimize>
28
    <OutputPath>bin\Release\</OutputPath>
29
    <DefineConstants>TRACE</DefineConstants>
30
    <ErrorReport>prompt</ErrorReport>
31
    <WarningLevel>4</WarningLevel>
32
  </PropertyGroup>
33
  <ItemGroup>
34
    <Reference Include="System" />
35
    <Reference Include="System.Core" />
36
    <Reference Include="System.Runtime.Serialization" />
37
    <Reference Include="System.Xml.Linq" />
38
    <Reference Include="System.Data.DataSetExtensions" />
39
    <Reference Include="Microsoft.CSharp" />
40
    <Reference Include="System.Data" />
41
    <Reference Include="System.Xml" />
42
  </ItemGroup>
43
  <ItemGroup>
44
    <Compile Include="Highchart.cs" />
45
    <Compile Include="HighchartAxis.cs" />
46
    <Compile Include="HighchartAxisEvent.cs" />
47
    <Compile Include="HighchartAxisLabels.cs" />
48
    <Compile Include="HighchartButton.cs" />
49
    <Compile Include="HighchartButtonOptions.cs" />
50
    <Compile Include="HighchartChart.cs" />
51
    <Compile Include="HighchartChartEvents.cs" />
52
    <Compile Include="HighchartCredits.cs" />
53
    <Compile Include="HighchartDataLabel.cs" />
54
    <Compile Include="HighchartDrilldown.cs" />
55
    <Compile Include="HighchartExporting.cs" />
56
    <Compile Include="HighchartExportingButtons.cs" />
57
    <Compile Include="HighchartExportingContextButton.cs" />
58
    <Compile Include="HighchartLabel.cs" />
59
    <Compile Include="HighchartLabelItem.cs" />
60
    <Compile Include="HighchartLabels.cs" />
61
    <Compile Include="HighchartLegend.cs" />
62
    <Compile Include="HighchartLegendNavigation.cs" />
63
    <Compile Include="HighchartLegendTitle.cs" />
64
    <Compile Include="HighchartLoading.cs" />
65
    <Compile Include="HighchartNavigation.cs" />
66
    <Compile Include="HighchartNoData.cs" />
67
    <Compile Include="HighchartPane.cs" />
68
    <Compile Include="HighchartPlotBand.cs" />
69
    <Compile Include="HighchartPlotLine.cs" />
70
    <Compile Include="HighchartPlotOptions.cs" />
71
    <Compile Include="HighchartSeries.cs" />
72
    <Compile Include="HighchartSeriesData.cs" />
73
    <Compile Include="HighchartSeriesDataEvent.cs" />
74
    <Compile Include="HighchartSeriesDataMarker.cs" />
75
    <Compile Include="HighchartSeriesDataStates.cs" />
76
    <Compile Include="HighchartState.cs" />
77
    <Compile Include="HighchartSubtitle.cs" />
78
    <Compile Include="HighchartTitle.cs" />
79
    <Compile Include="HighchartTooltip.cs" />
80
    <Compile Include="Properties\AssemblyInfo.cs" />
81
  </ItemGroup>
82
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
83
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
84
       Other similar extension points exist, see Microsoft.Common.targets.
85
  <Target Name="BeforeBuild">
86
  </Target>
87
  <Target Name="AfterBuild">
88
  </Target>
89
  -->
90
</Project>