scichart
Version: 
Fast WebGL JavaScript Charting Library and Framework
18 lines (17 loc) • 612 B
TypeScript
import { ISurfaceOptionsBase } from "../Charting/Visuals/SciChartSurfaceBase";
import { ICameraOptions } from "./CameraController";
import { Vector3 } from "./Vector3";
/**
 * Options passed to a {@link SciChart3DSurface} in the {@link SciChart3DSurface.create} function
 */
export interface I3DSurfaceOptions extends ISurfaceOptionsBase {
    cameraOptions?: ICameraOptions;
    worldDimensions?: Vector3;
    isZXPlaneVisible?: boolean;
    isXYPlaneVisible?: boolean;
    isZYPlaneVisible?: boolean;
    /**
     * Surface Background as an HTML color code;
     */
    background?: string;
}