예제 #1
0
파일: ChartPane.cs 프로젝트: akhuang/Zing
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartPane" /> class.
 /// </summary>
 public ChartPane()
 {
     Title = new ChartTitle();
     Margin = new ChartSpacing();
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartAxisTitle" /> class.
 /// </summary>
 public ChartAxisTitle()
 {
     Margin = new ChartSpacing();
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
     Visual = new ClientHandlerDescriptor();
 }
예제 #3
0
파일: ChartLegend.cs 프로젝트: akhuang/Zing
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLegend" /> class.
 /// </summary>
 public ChartLegend()
 {
     Margin = new ChartSpacing();
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
     Labels = new ChartLegendLabels();
 }
예제 #4
0
파일: ChartLegend.cs 프로젝트: akhuang/Zing
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLegend" /> class.
 /// </summary>
 public ChartLegend()
 {
     Margin  = new ChartSpacing();
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
     Labels  = new ChartLegendLabels();
 }
예제 #5
0
파일: ChartPane.cs 프로젝트: wanaxe/Study
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartPane" /> class.
 /// </summary>
 public ChartPane()
 {
     Title   = new ChartTitle();
     Margin  = new ChartSpacing();
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
 }
예제 #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTitle" /> class.
 /// </summary>
 public ChartTitle()
 {
     Font = ChartDefaults.Title.Font;
     Position = ChartDefaults.Title.Position;
     Align = ChartDefaults.Title.Align;
     Visible = ChartDefaults.Title.Visible;
     Margin = new ChartSpacing(ChartDefaults.Title.Margin);
     Padding = new ChartSpacing(ChartDefaults.Title.Padding);
     Border = new ChartElementBorder(ChartDefaults.Title.Border.Width, ChartDefaults.Title.Border.Color, ChartDefaults.Title.Border.DashType);
 }
예제 #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTitle" /> class.
 /// </summary>
 public ChartTitle()
 {
     Font     = ChartDefaults.Title.Font;
     Position = ChartDefaults.Title.Position;
     Align    = ChartDefaults.Title.Align;
     Visible  = ChartDefaults.Title.Visible;
     Margin   = new ChartSpacing(ChartDefaults.Title.Margin);
     Padding  = new ChartSpacing(ChartDefaults.Title.Padding);
     Border   = new ChartElementBorder(ChartDefaults.Title.Border.Width, ChartDefaults.Title.Border.Color, ChartDefaults.Title.Border.DashType);
 }
예제 #8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PlotArea" /> class.
 /// </summary>
 public PlotArea()
 {
     Background = ChartDefaults.PlotArea.background;
     Margin = new ChartSpacing(ChartDefaults.PlotArea.Margin);
     Border = new ChartElementBorder(
             ChartDefaults.PlotArea.Border.Width,
             ChartDefaults.PlotArea.Border.Color,
             ChartDefaults.PlotArea.Border.DashType
         );
 }
예제 #9
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartArea" /> class.
 /// </summary>
 public ChartArea()
 {
     Background = ChartDefaults.ChartArea.background;
     Margin     = new ChartSpacing(ChartDefaults.ChartArea.Margin);
     Border     = new ChartElementBorder(
         ChartDefaults.ChartArea.Border.Width,
         ChartDefaults.ChartArea.Border.Color,
         ChartDefaults.ChartArea.Border.DashType
         );
 }
예제 #10
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartMarkers" /> class.
 /// </summary>
 public ChartMarkers()
 {
     Size       = ChartDefaults.LineSeries.Markers.Size;
     Background = ChartDefaults.LineSeries.Markers.Background;
     Visible    = ChartDefaults.LineSeries.Markers.Visible;
     Type       = ChartDefaults.LineSeries.Markers.Type;
     Border     = new ChartElementBorder(
         ChartDefaults.LineSeries.Markers.Border.Width,
         ChartDefaults.LineSeries.Markers.Border.Color,
         ChartDefaults.LineSeries.Markers.Border.DashType
         );
 }
예제 #11
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartMarkers" /> class.
 /// </summary>
 public ChartMarkers()
 {
     Size = ChartDefaults.LineSeries.Markers.Size;
     Background = ChartDefaults.LineSeries.Markers.Background;
     Visible = ChartDefaults.LineSeries.Markers.Visible;
     Type = ChartDefaults.LineSeries.Markers.Type;
     Border = new ChartElementBorder(
             ChartDefaults.LineSeries.Markers.Border.Width,
             ChartDefaults.LineSeries.Markers.Border.Color,
             ChartDefaults.LineSeries.Markers.Border.DashType
         );
 }
예제 #12
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLegend" /> class.
 /// </summary>
 public ChartTooltip()
 {
     Font    = ChartDefaults.Tooltip.Font;
     Visible = ChartDefaults.Tooltip.Visible;
     Padding = new ChartSpacing(ChartDefaults.Tooltip.Padding);
     Border  = new ChartElementBorder(
         ChartDefaults.Tooltip.Border.Width,
         ChartDefaults.Tooltip.Border.Color,
         ChartDefaults.Tooltip.Border.DashType
         );
     Opacity = ChartDefaults.Tooltip.Opacity;
 }
예제 #13
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLegend" /> class.
 /// </summary>
 public ChartTooltip()
 {
     Font = ChartDefaults.Tooltip.Font;
     Visible = ChartDefaults.Tooltip.Visible;
     Padding = new ChartSpacing(ChartDefaults.Tooltip.Padding);
     Border = new ChartElementBorder(
         ChartDefaults.Tooltip.Border.Width,
         ChartDefaults.Tooltip.Border.Color,
         ChartDefaults.Tooltip.Border.DashType
     );
     Opacity = ChartDefaults.Tooltip.Opacity;
 }
예제 #14
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLegend" /> class.
 /// </summary>
 public ChartLegend()
 {
     Font = ChartDefaults.Legend.Font;
     Color = ChartDefaults.Legend.Color;
     Position = ChartDefaults.Legend.Position;
     Visible = ChartDefaults.Legend.Visible;
     Margin = new ChartSpacing(ChartDefaults.Legend.Margin);
     Padding = new ChartSpacing(ChartDefaults.Legend.Padding);
     Border = new ChartElementBorder(
             ChartDefaults.Legend.Border.Width,
             ChartDefaults.Legend.Border.Color,
             ChartDefaults.Legend.Border.DashType
         );
 }
예제 #15
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLegend" /> class.
 /// </summary>
 public ChartLegend()
 {
     Font     = ChartDefaults.Legend.Font;
     Color    = ChartDefaults.Legend.Color;
     Position = ChartDefaults.Legend.Position;
     Visible  = ChartDefaults.Legend.Visible;
     Margin   = new ChartSpacing(ChartDefaults.Legend.Margin);
     Padding  = new ChartSpacing(ChartDefaults.Legend.Padding);
     Border   = new ChartElementBorder(
         ChartDefaults.Legend.Border.Width,
         ChartDefaults.Legend.Border.Color,
         ChartDefaults.Legend.Border.DashType
         );
 }
예제 #16
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLabels" /> class.
 /// </summary>
 protected ChartLabels()
 {
     Font    = ChartDefaults.Labels.Font;
     Visible = ChartDefaults.Labels.Visible;
     Margin  = new ChartSpacing(ChartDefaults.Labels.Margin);
     Padding = new ChartSpacing(ChartDefaults.Labels.Padding);
     Border  = new ChartElementBorder(
         ChartDefaults.Labels.Border.Width,
         ChartDefaults.Labels.Border.Color,
         ChartDefaults.Labels.Border.DashType
         );
     Color    = ChartDefaults.Labels.Color;
     Opacity  = ChartDefaults.Labels.Opacity;
     Rotation = ChartDefaults.Labels.Rotation;
 }
예제 #17
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLabels" /> class.
 /// </summary>
 protected ChartLabels()
 {
     Font = ChartDefaults.Labels.Font;
     Visible = ChartDefaults.Labels.Visible;
     Margin = new ChartSpacing(ChartDefaults.Labels.Margin);
     Padding = new ChartSpacing(ChartDefaults.Labels.Padding);
     Border = new ChartElementBorder(
         ChartDefaults.Labels.Border.Width,
         ChartDefaults.Labels.Border.Color,
         ChartDefaults.Labels.Border.DashType
     );
     Color = ChartDefaults.Labels.Color;
     Opacity = ChartDefaults.Labels.Opacity;
     Rotation = ChartDefaults.Labels.Rotation;
 }
예제 #18
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartBorderBuilder" /> class.
 /// </summary>
 /// <param name="chartBorder">The chart border.</param>
 public ChartBorderBuilder(ChartElementBorder chartBorder)
 {
     border = chartBorder;
 }
예제 #19
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartSeriesHighlight" /> class.
 /// </summary>
 public ChartSeriesHighlight()
 {
     Border = new ChartElementBorder();
     Line = new ChartLine();
 }
예제 #20
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartBorderBuilder" /> class.
 /// </summary>
 /// <param name="chartBorder">The chart border.</param>
 public ChartBorderBuilder(ChartElementBorder chartBorder)
 {
     border = chartBorder;
 }
예제 #21
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartMarkers" /> class.
 /// </summary>
 public ChartMarkers()
 {
     Border = new ChartElementBorder();
 }
예제 #22
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearTrack" /> class.
 /// </summary>
 public GaugeLinearTrack()
 {
     Border = new ChartElementBorder();
 }
예제 #23
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartBulletTarget" /> class.
 /// </summary>
 public ChartBulletTarget()
 {
     Border = new ChartElementBorder();
 }
예제 #24
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartBulletTarget" /> class.
 /// </summary>
 public ChartBulletTarget()
 {
     Border = new ChartElementBorder();
 }
예제 #25
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTooltipBase" /> class.
 /// </summary>
 protected ChartTooltipBase()
 {
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
 }
예제 #26
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartAxisTitle" /> class.
 /// </summary>
 public ChartAxisTitle()
 {
     Margin = new ChartSpacing();
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
 }
예제 #27
0
파일: ChartLabels.cs 프로젝트: wanaxe/Study
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLabels" /> class.
 /// </summary>
 protected ChartLabels()
 {
     Margin = new ChartSpacing();
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
 }
예제 #28
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartMarkers" /> class.
 /// </summary>
 public ChartMarkers()
 {
     Border = new ChartElementBorder();
     BackgroundHandler = new ClientHandlerDescriptor();
 }
예제 #29
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTooltip" /> class.
 /// </summary>
 public ChartTooltip()
 {
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
 }
예제 #30
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTooltipBase" /> class.
 /// </summary>
 protected ChartTooltipBase()
 {
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
 }
예제 #31
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearPointer" /> class.
 /// </summary>
 public GaugeLinearPointer()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
     Track  = new GaugeLinearTrack();
 }
예제 #32
0
파일: PlotArea.cs 프로젝트: akhuang/Zing
 /// <summary>
 /// Initializes a new instance of the <see cref="PlotArea" /> class.
 /// </summary>
 public PlotArea()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
 }
예제 #33
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearPointer" /> class.
 /// </summary>
 public GaugeLinearPointer()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
     Track = new GaugeLinearTrack();
 }
예제 #34
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLabels" /> class.
 /// </summary>
 protected ChartLabels()
 {
     Margin  = new ChartSpacing();
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
 }
예제 #35
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearTrack" /> class.
 /// </summary>
 public GaugeLinearTrack()
 {
     Border = new ChartElementBorder();
 }
예제 #36
0
파일: GaugeArea.cs 프로젝트: wanaxe/Study
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeArea" /> class.
 /// </summary>
 public GaugeArea()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
 }
예제 #37
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartSeriesHighlight" /> class.
 /// </summary>
 public ChartSeriesHighlight()
 {
     Border = new ChartElementBorder();
     Line   = new ChartAreaLine();
 }
예제 #38
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartMarkers" /> class.
 /// </summary>
 public ChartMarkers()
 {
     Border = new ChartElementBorder();
 }
예제 #39
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartAxisTitle" /> class.
 /// </summary>
 public ChartAxisTitle()
 {
     Margin  = new ChartSpacing();
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
 }
예제 #40
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTooltip" /> class.
 /// </summary>
 public ChartTooltip()
 {
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
 }
예제 #41
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartSeriesHighlight" /> class.
 /// </summary>
 public ChartSeriesHighlight()
 {
     Border = new ChartElementBorder();
     Line = new ChartAreaLine();
     Markers = new ChartMarkers();
 }