public void Render(GenericChartSection section, IRenderingContext context)
        {
            if (section.Chart.IsEmpty)
            {
                return;
            }

            var renderAction = new RenderAction(context, section);

            renderAction.Render();
        }
Beispiel #2
0
        public void Render(TableSection section, IRenderingContext context)
        {
            var renderAction = new RenderAction(context, section);

            renderAction.Render();
        }