public int CountCharts(DxOutputtype type)
        {
            int n = 0;

            foreach (DxChartOrder order in orders)
            {
                foreach (DxChartBatch batch in order.batches)
                {
                    if (batch.outputtype == type)
                    {
                        n += batch.charts.Count;
                    }
                }
            }
            return(n);
        }
        public int CountTables(DxOutputtype type)
        {
            int n = 0;

            foreach (DxTableOrder order in orders)
            {
                foreach (DxTableBatch batch in order.batches)
                {
                    if (batch.outputtype == type)
                    {
                        n += batch.tables.Count;
                    }
                }
            }
            return(n);
        }
Exemple #3
0
 public DxChartBatch(DxOutputtype mycharttype, DxChartSettings mysettings)
 {
     Initialize();
     outputtype     = mycharttype;          //turned on Apr8 2019
     _batchsettings = mysettings;
 }
 public void SetOutputtype(DxOutputtype mydxOutputtype)
 {
     _outputtype = mydxOutputtype;
 }
Exemple #5
0
 public DxLineplotSettings(DxChartSettings settings, DxOutputtype myoutputtype)
 {
     SetOutputtype(myoutputtype);
 }
Exemple #6
0
 public DxActogramSettings(DxChartSettings settings, DxOutputtype myoutputtype)
 {
     SetOutputtype(myoutputtype);
 }
 public void SetOutputtype(DxOutputtype mydxOutputtype)
 {
     _outputtype = mydxOutputtype;
     _colors     = DefaultColors();
 }
 public DxChartSettings(DxOutputtype mydxOutputType)
 {
     SetOutputtype(mydxOutputType);
     Initialize();
 }