ChartBasem_DrawingExclusiveLock Field

Used to lock drawing algorithm of ChartBase.

Definition

Namespace: BeeMobile.LineChart
Assembly: BeeMobile.LineChart.NET48 (in BeeMobile.LineChart.NET48.dll) Version: 4.8.1.10 (4.8.1.10)
C#
protected Object m_DrawingExclusiveLock

Field Value

Object

Remarks

If you are implementing any public methods, properties or events which can affect the way ChartBase is drawn, make sure to lock on this object. That way, if your properties, events or methods are called from a different thread while ChartBase is being drawn, the calling thread will have to wait until the drawing is complete, thus making ChartBase thread safe.

If you are implementing your own drawing algorithm, make sure to lock on this object too.

See Also