Scene Type
Scene
Static members
Static member | Description |
Full Usage:
Scene.getXAxis scene
Parameters:
Scene
-
The scene to get the x axis from
Returns: LinearAxis
|
|
Full Usage:
Scene.getYAxis scene
Parameters:
Scene
-
The scene to get the y axis from
Returns: LinearAxis
|
|
Full Usage:
Scene.getZAxis scene
Parameters:
Scene
-
The scene to get the z axis from
Returns: LinearAxis
|
|
Full Usage:
Scene.init (?Annotations, ?AspectMode, ?AspectRatio, ?BGColor, ?Camera, ?Domain, ?DragMode, ?HoverMode, ?UIRevision, ?XAxis, ?YAxis, ?ZAxis)
Parameters:
Annotation seq
-
An annotation is a text element that can be placed anywhere in the plot. It can be positioned with respect to relative coordinates in the plot or with respect to the actual data coordinates of the graph. Annotations can be shown with or without an arrow.
?AspectMode : AspectMode
-
If "cube", this scene's axes are drawn as a cube, regardless of the axes' ranges. If "data", this scene's axes are drawn in proportion with the axes' ranges. If "manual", this scene's axes are drawn in proportion with the input of "aspectratio" (the default behavior if "aspectratio" is provided). If "auto", this scene's axes are drawn using the results of "data" except when one axis is more than four times the size of the two others, where in that case the results of "cube" are used.
?AspectRatio : AspectRatio
-
Sets this scene's axis aspectratio.
?BGColor : Color
-
Sets this scene's background color.
?Camera : Camera
-
Sets this scene's camera
?Domain : Domain
-
Sets this scene's domain
?DragMode : DragMode
-
Determines the mode of drag interactions for this scene.
?HoverMode : HoverMode
-
Determines the mode of hover interactions for this scene.
?UIRevision : string
-
Controls persistence of user-driven changes in camera attributes. Defaults to `layout.uirevision`.
?XAxis : LinearAxis
-
Sets this scene's xaxis
?YAxis : LinearAxis
-
Sets this scene's yaxis
?ZAxis : LinearAxis
-
Sets this scene's zaxis
Returns: Scene
|
|
Full Usage:
Scene.setXAxis xAxis
Parameters:
LinearAxis
-
The new x axis object
Returns: Scene -> Scene
|
|
Full Usage:
Scene.setYAxis yAxis
Parameters:
LinearAxis
-
The new y axis object
Returns: Scene -> Scene
|
|
Full Usage:
Scene.setZAxis zAxis
Parameters:
LinearAxis
-
The new z axis object
Returns: Scene -> Scene
|
|
Full Usage:
Scene.style (?Annotations, ?AspectMode, ?AspectRatio, ?BGColor, ?Camera, ?Domain, ?DragMode, ?HoverMode, ?UIRevision, ?XAxis, ?YAxis, ?ZAxis)
Parameters:
Annotation seq
-
An annotation is a text element that can be placed anywhere in the plot. It can be positioned with respect to relative coordinates in the plot or with respect to the actual data coordinates of the graph. Annotations can be shown with or without an arrow.
?AspectMode : AspectMode
-
If "cube", this scene's axes are drawn as a cube, regardless of the axes' ranges. If "data", this scene's axes are drawn in proportion with the axes' ranges. If "manual", this scene's axes are drawn in proportion with the input of "aspectratio" (the default behavior if "aspectratio" is provided). If "auto", this scene's axes are drawn using the results of "data" except when one axis is more than four times the size of the two others, where in that case the results of "cube" are used.
?AspectRatio : AspectRatio
-
Sets this scene's axis aspectratio.
?BGColor : Color
-
Sets this scene's background color.
?Camera : Camera
-
Sets this scene's camera
?Domain : Domain
-
Sets this scene's domain
?DragMode : DragMode
-
Determines the mode of drag interactions for this scene.
?HoverMode : HoverMode
-
Determines the mode of hover interactions for this scene.
?UIRevision : string
-
Controls persistence of user-driven changes in camera attributes. Defaults to `layout.uirevision`.
?XAxis : LinearAxis
-
Sets this scene's xaxis
?YAxis : LinearAxis
-
Sets this scene's yaxis
?ZAxis : LinearAxis
-
Sets this scene's zaxis
Returns: Scene -> Scene
|
|
Full Usage:
Scene.tryGetTypedMember propName scene
Parameters:
string
-
The name of the dynamic member to get the value of
scene : Scene
-
The scene to get the dynamic member value from
Returns: 'T option
|
|