ag-charts-types
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
14 lines (13 loc) • 466 B
TypeScript
import type { CssColor, PixelSize } from './types';
export interface AgDropShadowOptions {
/** Whether the shadow is visible. */
enabled?: boolean;
/** The colour of the shadow. */
color?: CssColor;
/** The horizontal offset in pixels for the shadow. */
xOffset?: PixelSize;
/** The vertical offset in pixels for the shadow. */
yOffset?: PixelSize;
/** The radius of the shadow's blur, given in pixels. */
blur?: PixelSize;
}