Spaces:
Sleeping
Sleeping
File size: 1,152 Bytes
2e818da | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Each template module calls register() at import time. Import them here so the
# registry is populated whenever the package is imported. Add one line per template.
from . import chart_bar # noqa: F401
from . import chart_grouped_bar # noqa: F401
from . import chart_stacked_bar # noqa: F401
from . import chart_line # noqa: F401
from . import chart_multi_line # noqa: F401
from . import chart_area # noqa: F401
from . import chart_scatter # noqa: F401
from . import chart_histogram # noqa: F401
from . import chart_pie # noqa: F401
from . import chart_donut # noqa: F401
from . import chart_data_table # noqa: F401
from . import hier_tree # noqa: F401
from . import hier_treemap # noqa: F401
from . import hier_sunburst # noqa: F401
from . import hier_icicle # noqa: F401
from . import hier_circle_pack # noqa: F401
from . import network_force_graph # noqa: F401
from . import network_arc_diagram # noqa: F401
from . import network_chord # noqa: F401
from . import network_adjacency_matrix # noqa: F401
from . import flow_sankey # noqa: F401
from . import flow_radial_cluster # noqa: F401
from . import flow_bubble # noqa: F401
|