-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGoogleChartSharp.xml
763 lines (762 loc) · 33.2 KB
/
GoogleChartSharp.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
<?xml version="1.0"?>
<doc>
<assembly>
<name>GoogleChartSharp</name>
</assembly>
<members>
<member name="M:GoogleChartSharp.ShapeMarker.#ctor(GoogleChartSharp.ShapeMarkerType,System.String,System.Int32,System.Single,System.Int32)">
<summary>
Create a shape marker for points on line charts and scatter plots
</summary>
<param name="markerType"></param>
<param name="hexColor">RRGGBB format hexadecimal number</param>
<param name="datasetIndex">the index of the line on which to draw the marker. This is 0 for the first data set, 1 for the second and so on</param>
<param name="dataPoint">a floating point value that specifies on which data point the marker will be drawn. This is 1 for the first data set, 2 for the second and so on. Specify a fraction to interpolate a marker between two points.</param>
<param name="size">the size of the marker in pixels</param>
</member>
<member name="P:GoogleChartSharp.ShapeMarker.HexColor">
<summary>
an RRGGBB format hexadecimal number.
</summary>
</member>
<member name="P:GoogleChartSharp.ShapeMarker.DatasetIndex">
<summary>
the index of the line on which to draw the marker. This is 0 for the first data set, 1 for the second and so on
</summary>
</member>
<member name="P:GoogleChartSharp.ShapeMarker.DataPoint">
<summary>
a floating point value that specifies on which data point the marker will be drawn. This is 1 for the first data set, 2 for the second and so on. Specify a fraction to interpolate a marker between two points
</summary>
</member>
<member name="P:GoogleChartSharp.ShapeMarker.Size">
<summary>
the size of the marker in pixels
</summary>
</member>
<member name="F:GoogleChartSharp.ShapeMarkerType.Arrow">
<summary>
A marker in the shape of an arrow
</summary>
</member>
<member name="F:GoogleChartSharp.ShapeMarkerType.Cross">
<summary>
A marker in the shape of a cross
</summary>
</member>
<member name="F:GoogleChartSharp.ShapeMarkerType.Diamond">
<summary>
A marker in the shape of a diamond
</summary>
</member>
<member name="F:GoogleChartSharp.ShapeMarkerType.Circle">
<summary>
A marker in the shape of a circle
</summary>
</member>
<member name="F:GoogleChartSharp.ShapeMarkerType.Square">
<summary>
A marker in the shape of a square
</summary>
</member>
<member name="F:GoogleChartSharp.ShapeMarkerType.VerticalLineToDataPoint">
<summary>
A marker that is a vertical line from the x-axis to the data point
</summary>
</member>
<member name="F:GoogleChartSharp.ShapeMarkerType.VerticalLine">
<summary>
A marker that is a vertical line from the x-axis to the top of the chart area
through the data point
</summary>
</member>
<member name="F:GoogleChartSharp.ShapeMarkerType.HorizontalLine">
<summary>
A marker that is a horizontal line from the y-axis to the edge of the chart area
through the data point
</summary>
</member>
<member name="F:GoogleChartSharp.ShapeMarkerType.XShape">
<summary>
A marker in the shape of an X
</summary>
</member>
<member name="M:GoogleChartSharp.LinearGradientFill.#ctor(GoogleChartSharp.ChartFillTarget,System.Int32)">
<summary>
Create a linear gradient
</summary>
<param name="fillTarget">area to be filled</param>
<param name="angle">specifies the angle of the gradient between 0 (horizontal) and 90 (vertical)</param>
</member>
<member name="M:GoogleChartSharp.LinearGradientFill.AddColorOffsetPair(System.String,System.Double)">
<summary>
Add a color/offset pair to the linear gradient
</summary>
<param name="color">RRGGBB format hexadecimal number</param>
<param name="offset">specify at what point the color is pure where: 0 specifies the right-most chart position and 1 the left-most</param>
</member>
<member name="P:GoogleChartSharp.LinearGradientFill.FillTarget">
<summary>
The area that will be filled.
</summary>
</member>
<member name="P:GoogleChartSharp.LinearGradientFill.Angle">
<summary>
specifies the angle of the gradient between 0 (horizontal) and 90 (vertical)
</summary>
</member>
<member name="F:GoogleChartSharp.LinearGradientFill.ColorOffsetPair.Color">
<summary>
RRGGBB format hexadecimal number
</summary>
</member>
<member name="F:GoogleChartSharp.LinearGradientFill.ColorOffsetPair.Offset">
<summary>
specify at what point the color is pure where: 0 specifies the right-most
chart position and 1 the left-most.
</summary>
</member>
<member name="M:GoogleChartSharp.LinearGradientFill.ColorOffsetPair.#ctor(System.String,System.Double)">
<summary>
</summary>
<param name="color">RRGGBB format hexadecimal number</param>
<param name="offset">specify at what point the color is pure where: 0 specifies the right-most chart position and 1 the left-most</param>
</member>
<member name="M:GoogleChartSharp.SolidFill.#ctor(GoogleChartSharp.ChartFillTarget,System.String)">
<summary>
Create a solid fill
</summary>
<param name="fillTarget">The area that will be filled.</param>
<param name="color">an RRGGBB format hexadecimal number</param>
</member>
<member name="P:GoogleChartSharp.SolidFill.FillTarget">
<summary>
The area that will be filled.
</summary>
</member>
<member name="P:GoogleChartSharp.SolidFill.Color">
<summary>
an RRGGBB format hexadecimal number
</summary>
</member>
<member name="F:GoogleChartSharp.ChartFillTarget.Background">
<summary>
Fill the entire background of the chart
</summary>
</member>
<member name="F:GoogleChartSharp.ChartFillTarget.ChartArea">
<summary>
Fill only the chart area of the chart
</summary>
</member>
<member name="T:GoogleChartSharp.Chart">
<summary>
Base type for all charts.
</summary>
</member>
<member name="M:GoogleChartSharp.Chart.#ctor(System.Int32,System.Int32)">
<summary>
Create a chart
</summary>
<param name="width">width in pixels</param>
<param name="height">height in pixels</param>
</member>
<member name="M:GoogleChartSharp.Chart.SetData(System.Int32[])">
<summary>
Set chart to use single integer dataset
</summary>
<param name="data"></param>
</member>
<member name="M:GoogleChartSharp.Chart.SetData(System.Collections.Generic.ICollection{System.Int32[]})">
<summary>
Set chart to use integer dataset collection
</summary>
<param name="data"></param>
</member>
<member name="M:GoogleChartSharp.Chart.SetData(System.Single[])">
<summary>
Set chart to use single float dataset
</summary>
<param name="data"></param>
</member>
<member name="M:GoogleChartSharp.Chart.SetData(System.Collections.Generic.ICollection{System.Single[]})">
<summary>
Set chart to use float dataset collection
</summary>
<param name="data"></param>
</member>
<member name="M:GoogleChartSharp.Chart.SetTitle(System.String)">
<summary>
Set chart title using default color and font size
</summary>
<param name="title">chart title text</param>
</member>
<member name="M:GoogleChartSharp.Chart.SetTitle(System.String,System.String)">
<summary>
Set chart title using default font size
</summary>
<param name="title">chart title text</param>
<param name="color">chart title color an RRGGBB format hexadecimal number</param>
</member>
<member name="M:GoogleChartSharp.Chart.SetTitle(System.String,System.String,System.Int32)">
<summary>
Set chart title
</summary>
<param name="title">chart title text</param>
<param name="color">chart title color an RRGGBB format hexadecimal number</param>
<param name="fontSize">chart title font size in pixels</param>
</member>
<member name="M:GoogleChartSharp.Chart.SetDatasetColors(System.String[])">
<summary>
Set the color for each dataset, match colors to datasets by
specifying them in the same order the datasets were added to the
chart.
</summary>
<param name="datasetColors">an array of RRGGBB format hexadecimal numbers</param>
</member>
<member name="M:GoogleChartSharp.Chart.AddSolidFill(GoogleChartSharp.SolidFill)">
<summary>
Add a solid fill to this chart.
</summary>
<param name="solidFill"></param>
</member>
<member name="M:GoogleChartSharp.Chart.AddLinearGradientFill(GoogleChartSharp.LinearGradientFill)">
<summary>
Add a linear gradient fill to this chart.
</summary>
<param name="linearGradientFill"></param>
</member>
<member name="M:GoogleChartSharp.Chart.AddLinearStripesFill(GoogleChartSharp.LinearStripesFill)">
<summary>
Add a linear stripes fill to this chart.
</summary>
<param name="linearStripesFill"></param>
</member>
<member name="M:GoogleChartSharp.Chart.SetGrid(System.Single,System.Single)">
<summary>
Add a grid to the chart using default line segment and blank line segment length.
</summary>
<param name="xAxisStepSize">Space between x-axis grid lines in relation to axis range.</param>
<param name="yAxisStepSize">Space between y-axis grid lines in relation to axis range.</param>
</member>
<member name="M:GoogleChartSharp.Chart.SetGrid(System.Single,System.Single,System.Single,System.Single)">
<summary>
Add a grid to the chart.
</summary>
<param name="xAxisStepSize">Space between x-axis grid lines in relation to axis range.</param>
<param name="yAxisStepSize">Space between y-axis grid lines in relation to axis range.</param>
<param name="lengthLineSegment">Length of each line segment in a grid line</param>
<param name="lengthBlankSegment">Length of each blank segment in a grid line</param>
</member>
<member name="M:GoogleChartSharp.Chart.AddFillArea(GoogleChartSharp.FillArea)">
<summary>
Add a fill area to the chart. Fill areas are fills between / under lines.
</summary>
<param name="fillArea"></param>
</member>
<member name="M:GoogleChartSharp.Chart.AddShapeMarker(GoogleChartSharp.ShapeMarker)">
<summary>
Add a shape marker to the chart. Shape markers are used to call attention to a data point on the chart.
</summary>
<param name="shapeMarker"></param>
</member>
<member name="M:GoogleChartSharp.Chart.AddRangeMarker(GoogleChartSharp.RangeMarker)">
<summary>
Add a range marker to the chart. Range markers are colored bands on the chart.
</summary>
<param name="rangeMarker"></param>
</member>
<member name="M:GoogleChartSharp.Chart.SetLegend(System.String[])">
<summary>
Set chart legend
</summary>
<param name="strs">legend labels</param>
</member>
<member name="M:GoogleChartSharp.Chart.AddAxis(GoogleChartSharp.ChartAxis)">
<summary>
Add an axis to the chart
</summary>
<param name="axis"></param>
</member>
<member name="M:GoogleChartSharp.Chart.GetUrl">
<summary>
Return the chart api url for this chart
</summary>
<returns></returns>
</member>
<member name="M:GoogleChartSharp.Chart.urlChartType">
<summary>
Returns the api chart identifier for the chart
</summary>
<returns></returns>
</member>
<member name="M:GoogleChartSharp.Chart.collectUrlElements">
<summary>
Collect all the elements that will be used in the chart url
</summary>
</member>
<member name="P:GoogleChartSharp.Chart.Width">
<summary>
Chart width in pixels.
</summary>
</member>
<member name="P:GoogleChartSharp.Chart.Height">
<summary>
Chart height in pixels.
</summary>
</member>
<member name="M:GoogleChartSharp.VennDiagram.#ctor(System.Int32,System.Int32)">
<summary>
Create a venn diagram
</summary>
<param name="width">width in pixels</param>
<param name="height">height in pixels</param>
</member>
<member name="M:GoogleChartSharp.PieChart.#ctor(System.Int32,System.Int32)">
<summary>
Create a 2D pie chart
</summary>
<param name="width">width in pixels</param>
<param name="height">height in pixels</param>
</member>
<member name="M:GoogleChartSharp.PieChart.#ctor(System.Int32,System.Int32,GoogleChartSharp.PieChartType)">
<summary>
Create a pie chart of specified type
</summary>
<param name="width">width in pixels</param>
<param name="height">height in pixels</param>
<param name="pieChartType"></param>
</member>
<member name="M:GoogleChartSharp.PieChart.SetLegend(System.String[])">
<summary>
Legend is not supported on Pie Charts
</summary>
<param name="strs"></param>
</member>
<member name="M:GoogleChartSharp.PieChart.SetPieChartLabels(System.String[])">
<summary>
Set labels for the Pie Chart slices
</summary>
<param name="labels">strings that will be used as label text</param>
</member>
<member name="F:GoogleChartSharp.PieChartType.TwoD">
<summary>
Two dimensional pie chart
</summary>
</member>
<member name="F:GoogleChartSharp.PieChartType.ThreeD">
<summary>
Three dimensional pie chart
</summary>
</member>
<member name="M:GoogleChartSharp.RangeMarker.#ctor(GoogleChartSharp.RangeMarkerType,System.String,System.Double,System.Double)">
<summary>
Create a range marker for line charts and scatter plots
</summary>
<param name="rangeMarkerType"></param>
<param name="color">an RRGGBB format hexadecimal number</param>
<param name="startPoint">Must be between 0.0 and 1.0. 0.0 is axis start, 1.0 is axis end.</param>
<param name="endPoint">Must be between 0.0 and 1.0. 0.0 is axis start, 1.0 is axis end.</param>
</member>
<member name="P:GoogleChartSharp.RangeMarker.Color">
<summary>
an RRGGBB format hexadecimal number.
</summary>
</member>
<member name="P:GoogleChartSharp.RangeMarker.StartPoint">
<summary>
for horizontal range markers is the position on the y-axis at which the range starts where 0.00 is the bottom and 1.00 is the top.
for vertical range markers is the position on the x-axis at which the range starts where 0.00 is the left and 1.00 is the right.
</summary>
</member>
<member name="P:GoogleChartSharp.RangeMarker.EndPoint">
<summary>
for horizontal range markers is the position on the y-axis at which the range ends where 0.00 is the bottom and 1.00 is the top.
for vertical range markers is the position on the x-axis at which the range ends where 0.00 is the left and 1.00 is the right.
</summary>
</member>
<member name="F:GoogleChartSharp.RangeMarkerType.Horizontal">
<summary>
A horizontal band across the chart area
</summary>
</member>
<member name="F:GoogleChartSharp.RangeMarkerType.Vertical">
<summary>
A vertical band across the chart area
</summary>
</member>
<member name="T:GoogleChartSharp.FillArea">
<summary>
Fill the area between / under lines
</summary>
</member>
<member name="M:GoogleChartSharp.FillArea.#ctor(System.String,System.Int32,System.Int32)">
<summary>
Create a fill area between lines for use on a line chart.
</summary>
<param name="color">an RRGGBB format hexadecimal number</param>
<param name="startLineIndex">line indexes are determined by the order in which datasets are added. The first set is index 0, then index 1 etc</param>
<param name="endLineIndex">line indexes are determined by the order in which datasets are added. The first set is index 0, then index 1 etc</param>
</member>
<member name="M:GoogleChartSharp.FillArea.#ctor(System.String,System.Int32)">
<summary>
Fill all the area under a line
</summary>
<param name="color">an RRGGBB format hexadecimal number</param>
<param name="lineIndex">line indexes are determined by the order in which datasets are added. The first set is index 0, then index 1 etc</param>
</member>
<member name="P:GoogleChartSharp.FillArea.Color">
<summary>
an RRGGBB format hexadecimal number
</summary>
</member>
<member name="P:GoogleChartSharp.FillArea.StartLineIndex">
<summary>
the index of the line at which the fill starts. This is determined by the order in which data sets are added. The first data set specified has an index of zero (0), the second 1, and so on.
</summary>
</member>
<member name="P:GoogleChartSharp.FillArea.EndLineIndex">
<summary>
the index of the line at which the fill ends. This is determined by the order in which data sets are added. The first data set specified has an index of zero (0), the second 1, and so on.
</summary>
</member>
<member name="T:GoogleChartSharp.FillAreaType">
<summary>
Specify area fill behavior
</summary>
</member>
<member name="F:GoogleChartSharp.FillAreaType.SingleLine">
<summary>
All area under the line will be filled
</summary>
</member>
<member name="F:GoogleChartSharp.FillAreaType.MultiLine">
<summary>
The area between this line and the next will be filled
</summary>
</member>
<member name="M:GoogleChartSharp.ScatterPlot.#ctor(System.Int32,System.Int32)">
<summary>
Create a scatter plot
</summary>
<param name="width">width in pixels</param>
<param name="height">height in pixels</param>
</member>
<member name="T:GoogleChartSharp.LineChartType">
<summary>
Specifies how the line chart handles datasets
</summary>
</member>
<member name="F:GoogleChartSharp.LineChartType.SingleDataSet">
<summary>
One line per dataset, points are evenly spaced along the x-axis
</summary>
</member>
<member name="F:GoogleChartSharp.LineChartType.MultiDataSet">
<summary>
Two datasets per line. The first dataset is the x coordinates
of the line. The second dataset is the Y coordinates of the line.
</summary>
</member>
<member name="M:GoogleChartSharp.LineChart.#ctor(System.Int32,System.Int32)">
<summary>
Create a line chart with one line per dataset. Points are evenly spaced along the x-axis.
</summary>
<param name="width">width in pixels</param>
<param name="height">height in pixels</param>
</member>
<member name="M:GoogleChartSharp.LineChart.#ctor(System.Int32,System.Int32,GoogleChartSharp.LineChartType)">
<summary>
Create a line chart with the specified type.
</summary>
<param name="width">width in pixels</param>
<param name="height">height in pixels</param>
<param name="lineChartType">specifies how the chart handles datasets</param>
</member>
<member name="M:GoogleChartSharp.LineChart.AddLineStyle(GoogleChartSharp.LineStyle)">
<summary>
Apply a style to a line. Line styles are applied to lines in order, the
first line will use the first line style.
</summary>
<param name="lineStyle"></param>
</member>
<member name="T:GoogleChartSharp.LineStyle">
<summary>
Specifies how a line is drawn.
</summary>
</member>
<member name="M:GoogleChartSharp.LineStyle.#ctor(System.Single,System.Single,System.Single)">
<summary>
Create a line style
</summary>
<param name="lineThickness">line thickness in pixels</param>
<param name="lengthOfSegment">length of each solid line segment in pixels</param>
<param name="lengthOfBlankSegment">length of each blank line segment in pixels</param>
</member>
<member name="P:GoogleChartSharp.LineStyle.LineThickness">
<summary>
line thickness in pixels
</summary>
</member>
<member name="P:GoogleChartSharp.LineStyle.LengthOfSegment">
<summary>
length of each solid line segment in pixels
</summary>
</member>
<member name="P:GoogleChartSharp.LineStyle.LengthOfBlankSegment">
<summary>
length of each blank line segment in pixels
</summary>
</member>
<member name="T:GoogleChartSharp.InvalidFeatureForChartTypeException">
<summary>
Thrown if the current chart type does not support the requested feature
</summary>
</member>
<member name="T:GoogleChartSharp.ChartType">
<summary>
Chart types, used internally
</summary>
</member>
<member name="T:GoogleChartSharp.BarChartOrientation">
<summary>
The orientation of the bars.
</summary>
</member>
<member name="F:GoogleChartSharp.BarChartOrientation.Vertical">
<summary>
Bars will be positioned vertically
</summary>
</member>
<member name="F:GoogleChartSharp.BarChartOrientation.Horizontal">
<summary>
Bars will be positioned horizontally
</summary>
</member>
<member name="T:GoogleChartSharp.BarChartStyle">
<summary>
Bar chart style when using multiple data sets
</summary>
</member>
<member name="F:GoogleChartSharp.BarChartStyle.Stacked">
<summary>
Multiple data sets will be stacked.
</summary>
</member>
<member name="F:GoogleChartSharp.BarChartStyle.Grouped">
<summary>
Multiple data sets will be grouped.
</summary>
</member>
<member name="T:GoogleChartSharp.BarChart">
<summary>
Bar Chart
</summary>
</member>
<member name="M:GoogleChartSharp.BarChart.#ctor(System.Int32,System.Int32,GoogleChartSharp.BarChartOrientation,GoogleChartSharp.BarChartStyle)">
<summary>
Create a bar chart
</summary>
<param name="width">Width in pixels</param>
<param name="height">Height in pixels</param>
<param name="orientation">The orientation of the bars.</param>
<param name="style">Bar chart style when using multiple data sets</param>
</member>
<member name="M:GoogleChartSharp.BarChart.SetBarWidth(System.Int32)">
<summary>
Set the width of the individual bars
</summary>
<param name="width">Width in pixels</param>
</member>
<member name="M:GoogleChartSharp.BarChart.urlChartType">
<summary>
Return the chart identifier used in the chart url.
</summary>
<returns></returns>
</member>
<member name="M:GoogleChartSharp.BarChart.collectUrlElements">
<summary>
Collect all the elements that will make up the chart url.
</summary>
</member>
<member name="M:GoogleChartSharp.BarChart.getChartType">
<summary>
Return the chart type for this chart
</summary>
<returns></returns>
</member>
<member name="M:GoogleChartSharp.LinearStripesFill.#ctor(GoogleChartSharp.ChartFillTarget,System.Int32)">
<summary>
Create a linear stripes fill.
</summary>
<param name="fillTarget">The area that will be filled.</param>
<param name="angle">specifies the angle of the gradient between 0 (vertical) and 90 (horizontal)</param>
</member>
<member name="M:GoogleChartSharp.LinearStripesFill.AddColorWidthPair(System.String,System.Double)">
<summary>
A color/width pair describes a linear stripe.
</summary>
<param name="color">RRGGBB format hexadecimal number</param>
<param name="width">must be between 0 and 1 where 1 is the full width of the chart</param>
</member>
<member name="P:GoogleChartSharp.LinearStripesFill.FillTarget">
<summary>
The area that will be filled.
</summary>
</member>
<member name="P:GoogleChartSharp.LinearStripesFill.Angle">
<summary>
specifies the angle of the gradient between 0 (vertical) and 90 (horizontal)
</summary>
</member>
<member name="F:GoogleChartSharp.LinearStripesFill.ColorWidthPair.Color">
<summary>
RRGGBB format hexadecimal number
</summary>
</member>
<member name="F:GoogleChartSharp.LinearStripesFill.ColorWidthPair.Width">
<summary>
must be between 0 and 1 where 1 is the full width of the chart
</summary>
</member>
<member name="M:GoogleChartSharp.LinearStripesFill.ColorWidthPair.#ctor(System.String,System.Double)">
<summary>
Describes a linear stripe. Stripes are repeated until the chart is filled.
</summary>
<param name="color">RGGBB format hexadecimal number</param>
<param name="width">must be between 0 and 1 where 1 is the full width of the chart</param>
</member>
<member name="T:GoogleChartSharp.AxisAlignmentType">
<summary>
Axis label alignment. By default: x-axis labels are centered, left y-axis
labels are right aligned, right y-axis labels are left aligned
</summary>
</member>
<member name="F:GoogleChartSharp.AxisAlignmentType.Left">
<summary>
Left align label
</summary>
</member>
<member name="F:GoogleChartSharp.AxisAlignmentType.Centered">
<summary>
Center align label
</summary>
</member>
<member name="F:GoogleChartSharp.AxisAlignmentType.Right">
<summary>
Right align label
</summary>
</member>
<member name="F:GoogleChartSharp.AxisAlignmentType.Unset">
<summary>
Use default alignment
</summary>
</member>
<member name="T:GoogleChartSharp.ChartAxis">
<summary>
Chart Axis
</summary>
</member>
<member name="M:GoogleChartSharp.ChartAxis.#ctor(GoogleChartSharp.ChartAxisType)">
<summary>
Create an axis, default is range 0 - 100 evenly spaced. You can create multiple axes of the same ChartAxisType.
</summary>
<param name="axisType">Axis position</param>
</member>
<member name="M:GoogleChartSharp.ChartAxis.#ctor(GoogleChartSharp.ChartAxisType,System.String[])">
<summary>
Create an axis, default is range 0 - 100 evenly spaced. You can create multiple axes of the same ChartAxisType.
</summary>
<param name="axisType">Axis position</param>
<param name="labels">These labels will be added to the axis without position information</param>
</member>
<member name="M:GoogleChartSharp.ChartAxis.SetRange(System.Int32,System.Int32)">
<summary>
Specify the axis range
</summary>
<param name="lowerBound">the lowest value on the axis</param>
<param name="upperBound">the highest value on the axis</param>
</member>
<member name="M:GoogleChartSharp.ChartAxis.AddLabel(GoogleChartSharp.ChartAxisLabel)">
<summary>
Add a label to the axis
</summary>
<param name="axisLabel"></param>
</member>
<member name="P:GoogleChartSharp.ChartAxis.Color">
<summary>
an RRGGBB format hexadecimal number
</summary>
</member>
<member name="P:GoogleChartSharp.ChartAxis.FontSize">
<summary>
optional if used this specifies the size in pixels
</summary>
</member>
<member name="P:GoogleChartSharp.ChartAxis.Alignment">
<summary>
By default: x-axis labels are centered, left y-axis labels are right aligned, right y-axis labels are left aligned
</summary>
</member>
<member name="T:GoogleChartSharp.ChartAxisLabel">
<summary>
Describes an axis label
</summary>
</member>
<member name="F:GoogleChartSharp.ChartAxisLabel.Text">
<summary>
This text will be displayed on the axis
</summary>
</member>
<member name="F:GoogleChartSharp.ChartAxisLabel.Position">
<summary>
A value within the axis range
</summary>
</member>
<member name="M:GoogleChartSharp.ChartAxisLabel.#ctor(System.String)">
<summary>
Create an axis label without position information, labels will be evenly spaced on the axis
</summary>
<param name="text">The label text</param>
</member>
<member name="M:GoogleChartSharp.ChartAxisLabel.#ctor(System.Single)">
<summary>
Create an axis label without label text. The axis label will be evenly spaced on the axis and the text will
be it's numeric position within the axis range.
</summary>
<param name="position"></param>
</member>
<member name="M:GoogleChartSharp.ChartAxisLabel.#ctor(System.String,System.Single)">
<summary>
Create an axis label with label text and position.
</summary>
<param name="text">The label text</param>
<param name="position">The label position within the axis range</param>
</member>
<member name="T:GoogleChartSharp.ChartAxisType">
<summary>
Chart axis locations
</summary>
</member>
<member name="F:GoogleChartSharp.ChartAxisType.Bottom">
<summary>
Bottom x-axis
</summary>
</member>
<member name="F:GoogleChartSharp.ChartAxisType.Top">
<summary>
Top x-axis
</summary>
</member>
<member name="F:GoogleChartSharp.ChartAxisType.Left">
<summary>
Left y-axis
</summary>
</member>
<member name="F:GoogleChartSharp.ChartAxisType.Right">
<summary>
Right y-axis
</summary>
</member>
</members>
</doc>