Esempio n. 1
0
 public GraphData(List<int> value, Color color, Color colorGradient, string text, GraphCtrl.eGraphType graphType)
 {
     this._value = value;
     this._color = color;
     this._text = text;
     this._colorGradient = colorGradient;
     this._graphType = graphType;
 }
Esempio n. 2
0
 public GraphData(List<int> value, Color color, GraphCtrl.eGraphType graphType)
 {
     this._value = value;
     this._color = color;
     this._graphType = graphType;
 }
Esempio n. 3
0
 public GraphData(List<int> value, System.Drawing.Color color, System.Drawing.Color colorGradient, string text, GraphCtrl.eGraphType graphType)
 {
     _value = new List<int>();
     _maxWidth = 15;
     _graphType = GraphCtrl.eGraphType.Line;
     _value = value;
     _color = color;
     _text = text;
     _colorGradient = colorGradient;
     _graphType = graphType;
 }
Esempio n. 4
0
 public GraphData()
 {
     _value = new List<int>();
     _maxWidth = 15;
     _graphType = GraphCtrl.eGraphType.Line;
 }
Esempio n. 5
0
 public GraphData(List<int> value, Color color, string text, GraphCtrl.eGraphType graphType)
 {
     _value = value;
     _color = color;
     _text = text;
     _graphType = graphType;
 }
Esempio n. 6
0
 public GraphData(List<int> value, Color color, Color colorGradient, GraphCtrl.eGraphType graphType)
 {
     _value = value;
     _color = color;
     _colorGradient = colorGradient;
     _graphType = graphType;
 }