internal ChartArea GetByName(string areaName)
 {
     for (int i = 0; i < Count; i++)
     {
         Microsoft.ReportingServices.ReportIntermediateFormat.ChartArea chartArea = m_chart.ChartDef.ChartAreas[i];
         if (string.CompareOrdinal(areaName, chartArea.ChartAreaName) == 0)
         {
             return(base[i]);
         }
     }
     return(null);
 }
示例#2
0
 internal ChartArea(Microsoft.ReportingServices.ReportIntermediateFormat.ChartArea chartAreaDef, Chart chart)
 {
     m_chart        = chart;
     m_chartAreaDef = chartAreaDef;
 }