コード例 #1
0
ファイル: ChartMarkersBuilder.cs プロジェクト: Zedfa/Core
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartMarkersBuilder" /> class.
 /// </summary>
 /// <param name="chartLineMarkers">The line chart markers configuration.</param>
 public ChartMarkersBuilder(ChartMarkers chartLineMarkers)
 {
     lineMarkers = chartLineMarkers;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartMarkersBuilder" /> class.
 /// </summary>
 /// <param name="chartLineMarkers">The line chart markers configuration.</param>
 public ChartMarkersBuilder(ChartMarkers chartLineMarkers)
 {
     lineMarkers = chartLineMarkers;
 }
コード例 #3
0
ファイル: ChartNote.cs プロジェクト: wanaxe/Study
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartNote" /> class.
 /// </summary>
 public ChartNote()
 {
     Icon = new ChartMarkers();
     Label = new ChartNoteLabel();
     Line = new ChartNoteLine();
 }
コード例 #4
0
ファイル: ChartNote.cs プロジェクト: wanaxe/Study
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartNote" /> class.
 /// </summary>
 public ChartNote()
 {
     Icon  = new ChartMarkers();
     Label = new ChartNoteLabel();
     Line  = new ChartNoteLine();
 }
コード例 #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartSeriesHighlight" /> class.
 /// </summary>
 public ChartSeriesHighlight()
 {
     Border = new ChartElementBorder();
     Line = new ChartAreaLine();
     Markers = new ChartMarkers();
 }
コード例 #6
0
 public ChartLineMarkersBuilderTests()
 {
     markers = new ChartMarkers();
     builder = new ChartMarkersBuilder(markers);
 }
コード例 #7
0
 public ChartLineMarkerSerializerTests()
 {
     lineMarkers = new ChartMarkers();
 }
コード例 #8
0
ファイル: MarkerBase.cs プロジェクト: vlshl/pulxer
 public MarkerBase(ChartMarkers marker)
 {
     Marker = marker;
 }