Exemple #1
0
 private void ZoomChartLabels(ZoomBoundsInfo infos, Chart3DLabels labels)
 {
     if (labels == null)
     {
         return;
     }
     foreach (Chart3DLabel label in labels.LabelsCollection)
     {
         ZoomChartLabel(infos, label);
     }
 }
Exemple #2
0
 private void ZoomChartLabels(ZoomFontInfo infos, Chart3DLabels labels)
 {
     if (labels == null)
     {
         return;
     }
     ZoomStyle(infos, labels.DefaultStyle);
     foreach (Chart3DLabel label in labels.LabelsCollection)
     {
         ZoomChartLabel(infos, label);
     }
 }