The legend is a component that helps a user identify funnel items. The legend contains several items, one per funnel item, each consisting of a colored marker and text showing the funnel item's argument.
Properties that configure the legend's appearance, location, and content are collected in the legend object. To make the legend visible, set the legend.visible property to true.
jQuery$(function() { $("#funnelContainer").dxFunnel({ // ... legend: { visible: true } }); });Angular
<dx-funnel ... > <dxo-legend [visible]="true"></dxo-legend> </dx-funnel>
import { DxFunnelModule } from "devextreme-angular"; // ... export class AppComponent { // ... } @NgModule({ imports: [ // ... DxFunnelModule ], // ... })Vue
<template> <DxFunnel ... > <DxLegend :visible="true" /> </DxFunnel> </template> <script> import DxFunnel, { DxLegend } from 'devextreme-vue/funnel'; export default { components: { DxFunnel, DxLegend } } </script>React
import React from 'react'; import Funnel, { Legend } from 'devextreme-react/funnel'; class App extends React.Component { render() { return ( <Funnel ... > <Legend visible={true} /> </Funnel> ); } } export default App;See Also Feel free to share topic-related thoughts here.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4