Esempio n. 1
0
 public HighchartsSetUp WithSerieType(ChartSerieType serieType)
 {
     this.obj.Chart.Type = serieType;
     return(this);
 }
Esempio n. 2
0
partial         void OnSerieTypeChanging(ChartSerieType value);
Esempio n. 3
0
 public void CorrectTypeNamePerSerie(Serie serie, ChartSerieType expected)
 {
     Assert.AreEqual(expected, serie.Type);
 }
Esempio n. 4
0
 public HighchartsSetUp WithSerieType(ChartSerieType serieType)
 {
     this.obj.Chart.Type = serieType;
     return this;
 }
Esempio n. 5
0
 public Serie(string name, ChartSerieType type, Array values)
 {
     this.Name = name;
     this.Type = type;
     this.Values = values;
 }
Esempio n. 6
0
 public Serie(string name, ChartSerieType? type, Array data)
 {
     this.Name = name;
     this.Type = type;
     this.Data = data;
 }