コード例 #1
0
ファイル: DefaultDataSeries.cs プロジェクト: Daoting/dt
 public DefaultDataSeries(CalcExpression dataReference, Dt.Cells.Data.DataOrientation dataOrientation, bool displayHiddenData, Dt.Cells.Data.EmptyValueStyle emptyValueStyle, ICalcEvaluator evalutor)
 {
     this._dataReference     = dataReference;
     this._dataOrientation   = new Dt.Cells.Data.DataOrientation?(dataOrientation);
     this._displayHiddenData = displayHiddenData;
     this._emptyValueStyle   = emptyValueStyle;
     this._evaluator         = evalutor;
 }
コード例 #2
0
ファイル: Sparkline.cs プロジェクト: Daoting/dt
 internal void Init()
 {
     this.data            = null;
     this.group           = null;
     this.dataReference   = null;
     this.dataOrientation = Dt.Cells.Data.DataOrientation.Vertical;
     this.Row             = 0;
     this.Column          = 0;
     this.cachedFormula   = null;
 }
コード例 #3
0
ファイル: Sparkline.cs プロジェクト: Daoting/dt
 internal Sparkline(int row, int column, CalcExpression dataReference, Dt.Cells.Data.DataOrientation dataOrientation, Dt.Cells.Data.SparklineType type, SparklineSetting setting)
 {
     this.Row             = row;
     this.Column          = column;
     this.DataReference   = dataReference;
     this.DataOrientation = dataOrientation;
     this.group           = new SparklineGroup();
     this.group.Add(this);
     this.SparklineType = type;
     this.Setting       = setting;
 }