Ejemplo n.º 1
0
 public void Add(bool singleFile, string windowText, IStatResult result, bool isTotal, int statImage)
 {
     _singleFile = singleFile;
     _windowText = windowText;
     _result     = result;
     _isTotal    = isTotal;
     _statImage  = statImage;
     _needLoad   = true;
     _appendType = enumAppendExcelType.Base;
 }
Ejemplo n.º 2
0
 public void Add(bool singleFile, string windowText, IStatResult result, int displayCol, bool dislayDateLabel, bool isTotal, int statImage)
 {
     _singleFile      = singleFile;
     _windowText      = windowText;
     _result          = result;
     _displayCol      = displayCol;
     _dislayDateLabel = dislayDateLabel;
     _isTotal         = isTotal;
     _statImage       = statImage;
     _needLoad        = true;
     _appendType      = enumAppendExcelType.DisplayColLable;
 }
Ejemplo n.º 3
0
 public void Add(bool singleFile, string windowText, IStatResult result, int displayCol, bool isTotal, int totalAll, int statImage, byte baseCol)
 {
     _singleFile = singleFile;
     _windowText = windowText;
     _result     = result;
     _displayCol = displayCol;
     _isTotal    = isTotal;
     _totalAll   = totalAll;
     _statImage  = statImage;
     _needLoad   = true;
     _appendType = enumAppendExcelType.DisplayColAllTotal;
     _baseCol    = baseCol;
     Display();
 }
Ejemplo n.º 4
0
 public void Add(bool singleFile, string windowText, IStatResult result, int startCol, int displayCol, bool isTotal, int totalAll, int statImage, byte baseCol, int chartType)
 {
     _singleFile           = singleFile;
     _windowText           = windowText;
     _result               = result;
     _displayCol           = displayCol;
     _isTotal              = isTotal;
     _totalAll             = totalAll;
     _statImage            = statImage;
     _needLoad             = true;
     _appendType           = enumAppendExcelType.DisplayColAllTotal;
     _startCol             = startCol;
     _baseCol              = baseCol;
     _masExcelDrawStatType = chartType == 1 ? masExcelDrawStatType.xlColumnClustered : masExcelDrawStatType.xlLine;
     Display();
 }
Ejemplo n.º 5
0
 public void Add(bool singleFile, string windowText, IStatResult result, int startCol, int displayCol, bool dislayDateLabel, bool isTotal, int statImage, List <RowDisplayDef> rowRuler, int uionBCol, byte baseCol)
 {
     _singleFile      = singleFile;
     _windowText      = windowText;
     _result          = result;
     _displayCol      = displayCol;
     _dislayDateLabel = dislayDateLabel;
     _isTotal         = isTotal;
     _statImage       = statImage;
     _needLoad        = true;
     _appendType      = enumAppendExcelType.DisplayColLableAndRowRuler;
     _rowRulers       = rowRuler;
     _startCol        = startCol;
     _baseCol         = baseCol;
     _uionBCol        = uionBCol;
     Display();
 }