Exemple #1
0
        public static chartProperty chartProperty(string xvalue, string yvalue, string y2value, string strHeaderText, string strChartType, int numMaxYvalue)
        {
            chartProperty cp = new chartProperty();

            cp           = chartProperty(xvalue, yvalue, y2value, strHeaderText, strChartType);
            cp.maxYvalue = numMaxYvalue;
            return(cp);
        }
Exemple #2
0
        public static chartProperty chartProperty(string xvalue, string yvalue, string y2value, string strHeaderText, string strChartType, int numMaxYvalue, int numWidth, int numHeight)
        {
            chartProperty cp = new chartProperty();

            cp           = chartProperty(xvalue, yvalue, y2value, strHeaderText, strChartType, numMaxYvalue);
            cp.numWidth  = numWidth;
            cp.numHeight = numHeight;
            return(cp);
        }
Exemple #3
0
        public static chartProperty chartProperty(string xvalue, string yvalue, string y2value, string strHeaderText, string strChartType, int numMaxYvalue, int numWidth, int numHeight, string horizon, string vertical)
        {
            chartProperty cp = new chartProperty();

            cp = chartProperty(xvalue, yvalue, y2value, strHeaderText, strChartType, numMaxYvalue, numWidth, numHeight);
            cp.verticalLines   = vertical;
            cp.horizontalLines = horizon;
            return(cp);
        }
Exemple #4
0
        public static chartProperty chartProperty(string xvalue, string yvalue, string y2value, string strHeaderText, string strChartType, int numMaxYvalue, int numWidth, int numHeight, string horizon, string vertical, string showlegend, string showxlabel, string showylabel, string showy2label, string PObject, string PCounter, string Instance)
        {
            chartProperty cp = new chartProperty();

            cp             = chartProperty(xvalue, yvalue, y2value, strHeaderText, strChartType, numMaxYvalue, numWidth, numHeight, horizon, vertical, showlegend, showxlabel, showylabel, showy2label);
            cp.strPObject  = PObject;
            cp.strPCounter = PCounter;
            cp.strInstance = Instance;
            return(cp);
        }
Exemple #5
0
        public static chartProperty chartProperty(string xvalue, string yvalue, string y2value, string strHeaderText, string strChartType, int numMaxYvalue, int numWidth, int numHeight, string horizon, string vertical, string showlegend, string showxlabel, string showylabel, string showy2label)
        {
            chartProperty cp = new chartProperty();

            cp = chartProperty(xvalue, yvalue, y2value, strHeaderText, strChartType, numMaxYvalue, numWidth, numHeight, horizon, vertical);
            cp.bolShowLegent  = showlegend;
            cp.bolShowXlabel  = showxlabel;
            cp.bolShowYlabel  = showylabel;
            cp.bolShowY2label = showy2label;
            return(cp);
        }
Exemple #6
0
        public static chartProperty chartProperty(string xvalue, string yvalue, string y2value, string strHeaderText, string strChartType)
        {
            chartProperty cp = new chartProperty();

            cp.XvalueColumn            = xvalue;
            cp.YvalueColumn            = yvalue;
            cp.tmpValueColum           = y2value;
            cp.strAccessibleHeaderText = strHeaderText;
            if (string.IsNullOrEmpty(strChartType))
            {
                strChartType = "LINE";
            }
            cp.strChartType = strChartType;
            return(cp);
        }