示例#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
 /// <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
 /// <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
 /// <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();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartSeriesHighlight" /> class.
 /// </summary>
 public ChartSeriesHighlight()
 {
     Border = new ChartElementBorder();
     Line = new ChartAreaLine();
     Markers = new ChartMarkers();
 }