/// <summary>
 /// appends a datum value to the end of the specified category
 /// </summary>
 /// <param name="category"></param>
 /// <param name="data"></param>
 public void AppendDatumToCategory(string category, MixedSeriesGenericValue data)
 {
     if (mData.ContainsKey(category) == false)
     {
         Debug.LogWarning("Invalid category name. Make sure the category is present in the graph");
         return;
     }
     ((CategoryData)mData[category]).Data.Add(data);
 }
 void IMixedSeriesProxy.AppendDatum(string category, MixedSeriesGenericValue value)
 {
     AppendDatum(category, value);
 }
 protected abstract void AppendDatum(string category, MixedSeriesGenericValue value);
Ejemplo n.º 4
0
 protected override void AppendDatum(string category, MixedSeriesGenericValue value)
 {
     throw new NotImplementedException();
 }
 protected override void AppendDatum(string category, MixedSeriesGenericValue value)
 {
     throw new InvalidOperationException("Mixed series chart cannot be part of a mixed series chart");
 }