示例#1
0
文件: TSPlot.cs 项目: Yalibuda/Mtblib
 public override void SetDefault()
 {
     XScale = new Component.Scale.ContScale(ScaleDirection.X_Axis);
     YScale = new Component.Scale.ContScale(ScaleDirection.Y_Axis);
     Symbol = new Component.DataView.Symbol()
     {
         Visible = false
     };
     Connectline = new Component.DataView.Connect()
     {
         Visible = false
     };
     Panel      = new Component.MultiGraph.MPanel();
     DataLabel  = new Datlab();
     NoEmpty    = false;
     NoMissing  = false;
     GetCommand = DefaultCommand;
 }
示例#2
0
 /// <summary>
 /// 回復成預設狀態
 /// </summary>
 public override void SetDefault()
 {
     YVariables        = null;
     XVariables        = null;
     GroupingVariables = null;
     GraphType         = MultipleGraphType.Regular;
     YScale            = new Component.Scale.ContScale(ScaleDirection.Y_Axis);
     XScale            = new Component.Scale.ContScale(ScaleDirection.X_Axis);
     Symbol            = new Component.DataView.Symbol()
     {
         Visible = true
     };
     Connectline = new Component.DataView.Connect()
     {
         Visible = false
     };
     Projection = new Component.DataView.Projection()
     {
         Visible = false
     };
     Panel      = new Component.MultiGraph.MPanel();
     DataLabel  = new Datlab();
     GetCommand = DefaultCommand;
 }
示例#3
0
 public override void SetDefault()
 {
     BarsRepresent    = Chart.ChartRepresent.A_FUNCTION_OF_A_VARIABLE;
     StackType        = Chart.ChartStackType.Cluster;
     FuncType         = Chart.ChartFunctionType.SUM;
     TableArrangement = Chart.ChartTableArrangementType.RowsOuterMost;
     XScale           = new Component.Scale.CateScale(ScaleDirection.X_Axis);
     YScale           = new Component.Scale.ContScale(ScaleDirection.Y_Axis);
     Bar    = new Component.DataView.Bar();
     Symbol = new Component.DataView.Symbol()
     {
         Visible = false
     };
     Connectline = new Component.DataView.Connect()
     {
         Visible = false
     };
     Panel      = new Component.MultiGraph.MPanel();
     Transponse = false;
     DataLabel  = new Datlab();
     NoEmpty    = false;
     NoMissing  = false;
     GetCommand = DefaultCommand2;
 }