File tree Expand file tree Collapse file tree 4 files changed +776
-0
lines changed
Models/Charts/ChartPlugins Expand file tree Collapse file tree 4 files changed +776
-0
lines changed Original file line number Diff line number Diff line change 1+ namespace BlazorBootstrap ;
2+
3+ public enum DrawTime
4+ {
5+ /// <summary>
6+ /// Occurs before any drawing takes place
7+ /// </summary>
8+ BeforeDraw ,
9+
10+ /// <summary>
11+ /// Occurs after drawing of axes, but before datasets
12+ /// </summary>
13+ BeforeDatasetsDraw ,
14+
15+ /// <summary>
16+ /// Occurs after drawing of datasets but before items such as the tooltip
17+ /// </summary>
18+ AfterDatasetsDraw ,
19+
20+ /// <summary>
21+ /// After other drawing is completed.
22+ /// </summary>
23+ AfterDraw
24+ }
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Text ;
5+ using System . Threading . Tasks ;
6+
7+ namespace BlazorBootstrap ;
8+
9+ public enum PointStyle
10+ {
11+ Circle ,
12+ Cross ,
13+ CrossRot ,
14+ Dash ,
15+ Line ,
16+ Rect ,
17+ RectRounded ,
18+ RectRot ,
19+ Star ,
20+ Triangle
21+ }
You can’t perform that action at this time.
0 commit comments