Class JXG.NoRenderer
↳ JXG.NoRenderer
JXG.AbstractRenderer
Defined in: no.js.
Constructor Attributes | Constructor Name and Description |
---|---|
This renderer draws nothing.
|
Field Attributes | Field Name and Description |
---|---|
If this property is set to true the visual properties of the elements are updated
on every update.
|
|
This is used to easily determine which renderer we are using
|
Class Detail
JXG.NoRenderer()
This renderer draws nothing. It is intended to be used in environments where none of our rendering engines
are available, e.g. WebWorkers.
Field Detail
{Boolean}
enhancedRendering
If this property is set to true the visual properties of the elements are updated
on every update. Visual properties means: All the stuff stored in the
JXG.GeometryElement#visProp property won't be set if enhancedRendering is false
- Default Value:
- true
{String}
type
This is used to easily determine which renderer we are using
if (board.renderer.type === 'vml') { // do something }