Beispiel #1
0
 void updateFromDataSource()
 {
     if (valuesDataSource != null)
     {
         values.SetList(valuesDataSource.getData <float>());
     }
     if (labelsDataSource != null)
     {
         labels.SetList(labelsDataSource.getData <string>());
     }
     if (ringIDsDataSource != null)
     {
         ringIDs.SetList(ringIDsDataSource.getData <string>());
     }
 }
Beispiel #2
0
 void updateFromDataSource()
 {
     if (valuesDataSource != null)
     {
         values = valuesDataSource.getData <float>();
     }
     if (labelsDataSource != null)
     {
         labels = labelsDataSource.getData <string>();
     }
     if (ringIDsDataSource != null)
     {
         ringIDs = ringIDsDataSource.getData <string>();
     }
 }
Beispiel #3
0
 void UpdateFromDataSources()
 {
     if (sliceValuesDataSource != null)
     {
         sliceValues = sliceValuesDataSource.getData <float>();
     }
     if (sliceLabelsDataSource != null)
     {
         sliceLabels = sliceLabelsDataSource.getData <string>();
     }
     if (sliceColorsDataSource != null)
     {
         sliceColors = sliceColorsDataSource.getData <Color>();
     }
     if (sliceValuesDataSource != null || sliceLabelsDataSource != null || sliceColorsDataSource != null)
     {
         if (sortBy != sortMethod.None)
         {
             sortData();
         }
     }
 }