Interface Graph3dOptions

interface Graph3dOptions {
    animationAutoStart?: boolean;
    animationInterval?: number;
    animationPreload?: boolean;
    filterLabel?: string;
    height?: string;
    keepAspectRatio?: boolean;
    legendLabel?: string;
    showAnimationControls?: boolean;
    showGrayBottom?: boolean;
    showGrid?: boolean;
    showLegend?: boolean;
    showPerspective?: boolean;
    showShadow?: boolean;
    showSurfaceGrid?: boolean;
    showXAxis?: boolean;
    showYAxis?: boolean;
    showZAxis?: boolean;
    style?: "bar" | "bar-color" | "bar-size" | "dot" | "dot-color" | "dot-size" | "dot-line" | "line" | "grid" | "surface";
    valueMax?: number;
    valueMin?: number;
    verticalRatio?: number;
    width?: string;
    xBarWidth?: number;
    xCenter?: string;
    xLabel?: string;
    xMax?: number;
    xMin?: number;
    xStep?: number;
    yBarWidth?: number;
    yCenter?: string;
    yLabel?: string;
    yMax?: number;
    yMin?: number;
    yStep?: number;
    zLabel?: string;
    zMax?: number;
    zMin?: number;
    zStep?: number;
}

Properties

animationAutoStart?: boolean
animationInterval?: number

milliseconds e.g. 100

animationPreload?: boolean
filterLabel?: string
height?: string

e.g. "500px" or "100%"

keepAspectRatio?: boolean
legendLabel?: string
showAnimationControls?: boolean
showGrayBottom?: boolean
showGrid?: boolean
showLegend?: boolean
showPerspective?: boolean
showShadow?: boolean
showSurfaceGrid?: boolean
showXAxis?: boolean
showYAxis?: boolean
showZAxis?: boolean
style?: "bar" | "bar-color" | "bar-size" | "dot" | "dot-color" | "dot-size" | "dot-line" | "line" | "grid" | "surface"
valueMax?: number
valueMin?: number
verticalRatio?: number

a value between 0.1 and 1.0

width?: string

e.g. "500px" or "100%"

xBarWidth?: number
xCenter?: string
xLabel?: string
xMax?: number
xMin?: number
xStep?: number
yBarWidth?: number
yCenter?: string
yLabel?: string
yMax?: number
yMin?: number
yStep?: number
zLabel?: string
zMax?: number
zMin?: number
zStep?: number

Generated using TypeDoc