Esempio n. 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;
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartNote" /> class.
 /// </summary>
 public ChartNote()
 {
     Icon = new ChartMarkers();
     Label = new ChartNoteLabel();
     Line = new ChartNoteLine();
 }
Esempio n. 4
0
 /// <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();
 }
Esempio n. 6
0
 public ChartLineMarkersBuilderTests()
 {
     markers = new ChartMarkers();
     builder = new ChartMarkersBuilder(markers);
 }
Esempio n. 7
0
 public ChartLineMarkerSerializerTests()
 {
     lineMarkers = new ChartMarkers();
 }
Esempio n. 8
0
 public MarkerBase(ChartMarkers marker)
 {
     Marker = marker;
 }