The render context. This is a graphics object which has methods to draw lines, quads and polygons to the screen
The render pass data. Contains a resampled SciChart.Data.Model.IPointSeries, the SciChart.Data.Model.IndexRange of points on the screen and the current YAxis and XAxis SciChart.Charting.Numerics.CoordinateCalculators.ICoordinateCalculator<T> to convert data-points to screen points
InternalDraw Method (StackedColumnRenderableSeries)

Draws the series using the SciChart.Drawing.Common.IRenderContext2D and the IRenderPassData passed in

From version 6 onward, this defers to the DrawingProviders class. If you wish to have custom drawing, you must implement a drawing provider

Syntax
protected override void InternalDraw( 
   IRenderContext2D renderContext,
   IRenderPassData renderPassData
)

Parameters

renderContext
The render context. This is a graphics object which has methods to draw lines, quads and polygons to the screen
renderPassData
The render pass data. Contains a resampled SciChart.Data.Model.IPointSeries, the SciChart.Data.Model.IndexRange of points on the screen and the current YAxis and XAxis SciChart.Charting.Numerics.CoordinateCalculators.ICoordinateCalculator<T> to convert data-points to screen points
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also