In This Topic
Called when symbol is rendering.
Syntax
'Declaration
Protected Overridable Function OnSymbolRendering( _
ByVal As IRenderEngine, _
ByVal As Integer, _
ByVal As Double, _
ByVal As Double _
) As Boolean
'Usage
Dim instance As Series
Dim engine As IRenderEngine
Dim i As Integer
Dim x As Double
Dim y As Double
Dim value As Boolean
value = instance.OnSymbolRendering(engine, i, x, y)
protected virtual bool OnSymbolRendering(
IRenderEngine ,
int ,
double ,
double
)
protected:
virtual bool OnSymbolRendering(
IRenderEngine^ ,
int ,
double ,
double
)
Parameters
- engine
- Render engine
- i
- Symbol index
- x
- x-coordinate
- y
- y-coordinate
Return Value
Whether to perform default symbol rendering.
See Also