vue-data-ui
Version:
A user-empowering data visualization Vue 3 components library for eloquent data storytelling
126 lines (120 loc) • 4.75 kB
TypeScript
import type { DefineComponent, VNodeChild } from 'vue';
import type {
VueUiParallelCoordinatePlotDatasetSerieItem,
VueUiParallelCoordinatePlotDatasetItem,
VueUiParallelCoordinatePlotConfig,
VueUiParallelCoordinatePlotEventDatapoint,
VueUiParallelCoordinatePlotDatapointSelection,
VueUiParallelCoordinatePlotScaleSelection,
VueUiParallelCoordinatePlotExpose,
VueUiParallelCoordinatePlotEvent,
VueUiParallelCoordinatePlotProps,
VueUiAnnotatorActionColorSlotProps,
VueUiAnnotatorActionDrawSlotProps,
VueUiAnnotatorActionUndoSlotProps,
VueUiAnnotatorActionRedoSlotProps,
VueUiAnnotatorActionDeleteSlotProps,
VueUiMenuIconSlotProps,
VueUiOptionFullscreenSlotProps,
VueUiOptionAnnotatorSlotProps,
VueUiParallelCoordinatePlotFormattedDatapoint,
VueUiParallelCoordinatePlotCommentSlotProps,
VueUiParallelCoordinatePlotSvgSlotProps,
VueUiKeyboardNavigationHintSlotProps,
VueUiWatermarkSlotProps,
VueUiParallelCoordinatePlotLegendSlotProps,
VueUiParallelCoordinatePlotTooltipSlotProps,
CommonAnnotatorSlots,
VueUiParallelCoordinatePlotEmits,
VueUiParallelCoordinatePlotEmitSelectLegend,
VueUiParallelCoordinatePlotEmitSelectDatapoint,
VueUiParallelCoordinatePlotEmitCopyAlt,
} from 'vue-data-ui';
export type {
VueUiParallelCoordinatePlotDatasetSerieItem,
VueUiParallelCoordinatePlotDatasetItem,
VueUiParallelCoordinatePlotConfig,
VueUiParallelCoordinatePlotEventDatapoint,
VueUiParallelCoordinatePlotDatapointSelection,
VueUiParallelCoordinatePlotScaleSelection,
VueUiParallelCoordinatePlotExpose,
VueUiParallelCoordinatePlotEvent,
VueUiParallelCoordinatePlotProps,
VueUiAnnotatorActionColorSlotProps,
VueUiAnnotatorActionDrawSlotProps,
VueUiAnnotatorActionUndoSlotProps,
VueUiAnnotatorActionRedoSlotProps,
VueUiAnnotatorActionDeleteSlotProps,
VueUiMenuIconSlotProps,
VueUiOptionFullscreenSlotProps,
VueUiOptionAnnotatorSlotProps,
VueUiParallelCoordinatePlotFormattedDatapoint,
VueUiParallelCoordinatePlotCommentSlotProps,
VueUiParallelCoordinatePlotSvgSlotProps,
VueUiKeyboardNavigationHintSlotProps,
VueUiWatermarkSlotProps,
VueUiParallelCoordinatePlotLegendSlotProps,
VueUiParallelCoordinatePlotTooltipSlotProps,
CommonAnnotatorSlots,
VueUiParallelCoordinatePlotEmits,
VueUiParallelCoordinatePlotEmitSelectLegend,
VueUiParallelCoordinatePlotEmitSelectDatapoint,
VueUiParallelCoordinatePlotEmitCopyAlt,
};
declare const VueUiParallelCoordinatePlotBase: DefineComponent<
VueUiParallelCoordinatePlotProps,
{},
{},
{},
{},
{},
{},
VueUiParallelCoordinatePlotEmits
>;
export const VueUiParallelCoordinatePlot: typeof VueUiParallelCoordinatePlotBase & {
new (): VueUiParallelCoordinatePlotExpose & {
$slots: CommonAnnotatorSlots & {
['custom-menu-before']?: () => VNodeChild;
['custom-menu-after']?: () => VNodeChild;
menuIcon?: (props: VueUiMenuIconSlotProps) => VNodeChild;
optionTooltip?: () => VNodeChild;
optionPdf?: () => VNodeChild;
optionCsv?: () => VNodeChild;
optionImg?: () => VNodeChild;
optionSvg?: () => VNodeChild;
optionTable?: () => VNodeChild;
optionLabels?: () => VNodeChild;
optionFullscreen?: (
props: VueUiOptionFullscreenSlotProps,
) => VNodeChild;
optionAltCopy?: () => VNodeChild;
optionAnnotator?: (
props: VueUiOptionAnnotatorSlotProps,
) => VNodeChild;
['plot-comment']?: (
props: VueUiParallelCoordinatePlotCommentSlotProps,
) => VNodeChild;
svg?: (
props: VueUiParallelCoordinatePlotSvgSlotProps,
) => VNodeChild;
hint?: (props: VueUiKeyboardNavigationHintSlotProps) => VNodeChild;
watermark?: (props: VueUiWatermarkSlotProps) => VNodeChild;
source?: () => VNodeChild;
skeleton?: () => VNodeChild;
legend?: (
props: VueUiParallelCoordinatePlotLegendSlotProps,
) => VNodeChild;
['tooltip-before']?: (
props: VueUiParallelCoordinatePlotTooltipSlotProps,
) => VNodeChild;
tooltip?: (
props: VueUiParallelCoordinatePlotTooltipSlotProps,
) => VNodeChild;
['tooltip-after']?: (
props: VueUiParallelCoordinatePlotTooltipSlotProps,
) => VNodeChild;
};
};
};
export default VueUiParallelCoordinatePlot;
export { VueUiParallelCoordinatePlot };