メインコンテンツまでスキップ

Options

Product in Beta

The Reveal SDK Web Component Wrappers are currently under development, and we welcome your feedback to help us improve for the final release.

The documentation for the Wrappers are under construciton, but we didn't want to wait until they were done before sharing.

The RvRevealView web component wraps around the existing jQuery component to simplify its use. To facilitate this, we've introduced an options concept that allows you to control various parts of the UI in a web-friendly way.

Reveal View

<rv-visualization-viewer id="viewer" dashboard="Sales" visualization="Leads by Year"></rv-visualization-viewer>
CODEPEN

Visualization Viewer Options

The following options can be configured for RvVisualizationViewer:

export interface VisualizationViewerOptions {
showFilters?: boolean;
categoryGroupingSeparator?: string;
crosshairs?: boolean;
hoverTooltips?: boolean;
changeChartType?: boolean;
statisticalFunctions?: boolean;
menu?: {
items?: MenuItem[];
copy?: boolean;
duplicate?: boolean;
exportToExcel?: boolean;
exportToImage?: boolean;
showMenu?: boolean;
refresh?: boolean;
};
}

By configuring these options, you can tailor the behavior and appearance of the RvVisualizationViewer component to suit your specific needs, providing a more customized and user-friendly experience.