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