Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/20/11 20:58:46 (13 years ago)
Author:
cfleisch
Message:

#1503 data of runs is now shown correctly in chart

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Models/ChartModel.cs

    r6165 r6242  
    1414
    1515    private Color DataPointColor = System.Drawing.Color.Black;
    16     private String xAxisValue;
    17     private String yAxisValue;
    18     private String sizeAxisValue;
     16    //private String xAxisValue;
     17    //private String yAxisValue;
     18    //private String sizeAxisValue;
     19
     20    public String xAxisValue {
     21        get { return (HttpContext.Current.Session["xAxisValue"] == null) ? null : (String)HttpContext.Current.Session["xAxisValue"]; }
     22        set { HttpContext.Current.Session["xAxisValue"] = value; }
     23    }
     24    public String yAxisValue {
     25        get { return (HttpContext.Current.Session["yAxisValue"] == null) ? null : (String)HttpContext.Current.Session["yAxisValue"]; }
     26        set { HttpContext.Current.Session["yAxisValue"] = value; }
     27    }
     28    public String sizeAxisValue {
     29        get { return (HttpContext.Current.Session["sizeAxisValue"] == null) ? null : (String)HttpContext.Current.Session["sizeAxisValue"]; }
     30        set { HttpContext.Current.Session["sizeAxisValue"] = value; }
     31    }
     32
    1933
    2034    private Dictionary<string, Dictionary<object, double>> CategoricalMap {
     
    2337    }
    2438
     39    //public Run[] Runs {
     40    //  set;
     41    //  get;
     42    //  // {
     43    //  //UpdateComboBoxValues(value);
     44
     45    //  //}
     46    //}
     47
    2548    public Run[] Runs {
    26       set;
    27       get;
    28       // {
    29       //UpdateComboBoxValues(value);
    30 
    31       //}
     49        get { return (HttpContext.Current.Session["runs"] == null) ? null : (Run[])HttpContext.Current.Session["runs"]; }
     50        set { HttpContext.Current.Session["runs"] = value; }
    3251    }
    3352
Note: See TracChangeset for help on using the changeset viewer.