コード例 #1
0
ファイル: ChartBulletSeries.cs プロジェクト: akhuang/Zing
 private void Initialize()
 {
     Orientation = ChartSeriesOrientation.Horizontal;
     Border      = new ChartElementBorder();
     Tooltip     = new ChartTooltip();
     Target      = new ChartBulletTarget();
     Notes       = new ChartNote();
 }
コード例 #2
0
ファイル: ChartNoteSerializer.cs プロジェクト: akhuang/Zing
 public ChartNoteSerializer(ChartNote note)
 {
     this.note = note;
 }
コード例 #3
0
ファイル: ChartDonutSeries.cs プロジェクト: akhuang/Zing
 private void Initialize()
 {
     Type  = "donut";
     Notes = new ChartNote();
 }
コード例 #4
0
ファイル: ChartSeriesBase.cs プロジェクト: akhuang/Zing
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartSeriesBase{T}" /> class.
 /// </summary>
 protected ChartSeriesBase()
 {
     Tooltip   = new ChartTooltip();
     Highlight = new ChartSeriesHighlight();
     Notes     = new ChartNote();
 }
コード例 #5
0
ファイル: ChartNoteSerializer.cs プロジェクト: akhuang/Zing
 public ChartNoteSerializer(ChartNote note)
 {
     this.note = note;
 }