Beispiel #1
0
 /// <summary>Gets the labels for the specified chart axis.</summary>
 public virtual string[] GetAxisLabels(ChartAxis axis) {
    return null;
 }
Beispiel #2
0
 /// <summary/>
 public override string[] GetAxisLabels(ChartAxis axis) {
    if (axis != null) {
       if (axis == CategoryAxis) {
          return CategoryLabels;
       }
    }
    return null;
 }