Beispiel #1
0
 /// <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();
 }
 /// <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();
 }
Beispiel #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();
 }
Beispiel #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();
 }
Beispiel #5
0
 /// <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();
 }
Beispiel #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);
 }
Beispiel #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);
 }
Beispiel #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
         );
 }
Beispiel #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
         );
 }
Beispiel #10
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;
 }
Beispiel #11
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;
 }
Beispiel #12
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
         );
 }
Beispiel #13
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
         );
 }
Beispiel #14
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;
 }
Beispiel #15
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;
 }
Beispiel #16
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PlotArea" /> class.
 /// </summary>
 public PlotArea()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
 }
Beispiel #17
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearPointer" /> class.
 /// </summary>
 public GaugeLinearPointer()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
     Track  = new GaugeLinearTrack();
 }
Beispiel #18
0
 public BarcodeSpacingBuilder(ChartSpacing spacing)
 {
     this.padding = spacing;
 }
 public ChartMarginSerializerTests()
 {
     margin = new ChartSpacing();
 }
Beispiel #20
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartAxisTitle" /> class.
 /// </summary>
 public ChartAxisTitle()
 {
     Margin  = new ChartSpacing();
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTooltip" /> class.
 /// </summary>
 public ChartTooltip()
 {
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
 }
Beispiel #22
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearPointer" /> class.
 /// </summary>
 public GaugeLinearPointer()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
     Track = new GaugeLinearTrack();
 }
Beispiel #23
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartLabels" /> class.
 /// </summary>
 protected ChartLabels()
 {
     Margin  = new ChartSpacing();
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
 }
Beispiel #24
0
 public BarcodeSpacingBuilder(ChartSpacing spacing)
 {
     this.padding = spacing;
 }
Beispiel #25
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTooltipBase" /> class.
 /// </summary>
 protected ChartTooltipBase()
 {
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartAxisTitle" /> class.
 /// </summary>
 public ChartAxisTitle()
 {
     Margin = new ChartSpacing();
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
 }
Beispiel #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();
 }
 public ChartMarginSerializerTests()
 {
     margin = new ChartSpacing();
 }
Beispiel #29
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeArea" /> class.
 /// </summary>
 public GaugeArea()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
 }
 /// <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="ChartTooltipBase" /> class.
 /// </summary>
 protected ChartTooltipBase()
 {
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
 }