scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
12 lines (11 loc) • 449 B
TypeScript
import { AxisCubeDescriptor } from "./AxisCubeDescriptor";
/**
* A scene descriptor object which contains information (properties, data-values) for the 3D Scene in this current render pass
*/
export declare class SceneDescriptor {
/**
* Gets or sets the {@link AxisCubeDescriptor}, which defines the X,Y,Z axis walls, plane, labels and size & position
* in a 3D Scene
*/
axisCubeDescriptor: AxisCubeDescriptor;
}