/// import { StreamgraphChartProps } from '../../../props'; /** * A React component that displays a streamgraph chart. * * A streamgraph is a type of stacked area chart where areas are displaced around * a central axis. It is particularly effective for displaying volume across * different categories or over time with a relative scale that emphasizes * overall patterns and trends. * @example * ```tsx * import { StreamgraphChart } from '@sisense/sdk-ui'; * import * as DM from './sample-ecommerce'; * import { measureFactory } from '@sisense/sdk-data'; * * const CodeExample = () => { * return ( * * ); * }; * * export default CodeExample; * ``` * * * * Additional examples: * * Styled with a visible y-axis, thinned-out x-axis labels, and a legend: * ```tsx * import { StreamgraphChart } from '@sisense/sdk-ui'; * import * as DM from './sample-ecommerce'; * import { measureFactory } from '@sisense/sdk-data'; * * const CodeExample = () => { * return ( * * ); * }; * * export default CodeExample; * ``` * * * @param props - Streamgraph chart properties * @returns Streamgraph Chart component * @group Charts */ export declare const StreamgraphChart: import("react").FunctionComponent;