Ejemplo n.º 1
0
        public void Render(GenericChartSection section, IRenderingContext context)
        {
            if (section.Chart.IsEmpty)
            {
                return;
            }

            var renderAction = new RenderAction(context, section);

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

            renderAction.Render();
        }