示例#1
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;
 }
 /// <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();
 }
 /// <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
 public MarkerBase(ChartMarkers marker)
 {
     Marker = marker;
 }