コード例 #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
ファイル: ChartTitle.cs プロジェクト: hazzik/telerikaspnetmvc
 /// <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
ファイル: ChartTitle.cs プロジェクト: hazzik/telerikaspnetmvc
 /// <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
ファイル: PlotArea.cs プロジェクト: hazzik/telerikaspnetmvc
 /// <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
ファイル: ChartArea.cs プロジェクト: hazzik/telerikaspnetmvc
 /// <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="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;
 }
コード例 #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;
 }
コード例 #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
         );
 }
コード例 #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
         );
 }
コード例 #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;
 }
コード例 #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;
 }
コード例 #16
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();
 }
コード例 #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();
 }
コード例 #18
0
ファイル: BarcodeSpacingBuilder.cs プロジェクト: wanaxe/Study
 public BarcodeSpacingBuilder(ChartSpacing spacing)
 {
     this.padding = spacing;
 }
コード例 #19
0
 public ChartMarginSerializerTests()
 {
     margin = new ChartSpacing();
 }
コード例 #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();
 }
コード例 #21
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTooltip" /> class.
 /// </summary>
 public ChartTooltip()
 {
     Padding = new ChartSpacing();
     Border  = new ChartElementBorder();
 }
コード例 #22
0
ファイル: GaugeLinearPointer.cs プロジェクト: wanaxe/Study
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearPointer" /> class.
 /// </summary>
 public GaugeLinearPointer()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
     Track = new GaugeLinearTrack();
 }
コード例 #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();
 }
コード例 #24
0
ファイル: BarcodeSpacingBuilder.cs プロジェクト: wanaxe/Study
 public BarcodeSpacingBuilder(ChartSpacing spacing)
 {
     this.padding = spacing;
 }
コード例 #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
 public ChartMarginSerializerTests()
 {
     margin = new ChartSpacing();
 }
コード例 #29
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();
 }
コード例 #30
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTooltip" /> class.
 /// </summary>
 public ChartTooltip()
 {
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
 }
コード例 #31
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChartTooltipBase" /> class.
 /// </summary>
 protected ChartTooltipBase()
 {
     Padding = new ChartSpacing();
     Border = new ChartElementBorder();
 }