internal override ReportItemInstance GetOrCreateInstance()
 {
     if (m_instance == null)
     {
         m_instance = new ChartInstance(this);
     }
     return(m_instance);
 }
Exemple #2
0
 internal string EvaluateDynamicHeight(Microsoft.ReportingServices.OnDemandReportRendering.ChartInstance chartInstance, OnDemandProcessingContext context)
 {
     if (m_dynamicHeight == null)
     {
         return(null);
     }
     context.SetupContext(this, chartInstance);
     return(context.ReportRuntime.EvaluateChartDynamicSizeExpression(this, m_dynamicHeight, "DynamicHeight", isDynamicWidth: false));
 }