1
0

section_data_elements.py 1.2 KB

123456789101112131415161718192021222324252627282930
  1. from nicegui import optional_features
  2. from . import (aggrid_documentation, circular_progress_documentation, code_documentation, doc, echart_documentation,
  3. editor_documentation, highchart_documentation, json_editor_documentation, leaflet_documentation,
  4. line_plot_documentation, linear_progress_documentation, log_documentation, plotly_documentation,
  5. pyplot_documentation, scene_documentation, spinner_documentation, table_documentation,
  6. tree_documentation)
  7. doc.title('*Data* Elements')
  8. doc.intro(table_documentation)
  9. doc.intro(aggrid_documentation)
  10. if optional_features.has('highcharts'):
  11. doc.intro(highchart_documentation)
  12. doc.intro(echart_documentation)
  13. if optional_features.has('matplotlib'):
  14. doc.intro(pyplot_documentation)
  15. doc.intro(line_plot_documentation)
  16. if optional_features.has('plotly'):
  17. doc.intro(plotly_documentation)
  18. doc.intro(linear_progress_documentation)
  19. doc.intro(circular_progress_documentation)
  20. doc.intro(spinner_documentation)
  21. doc.intro(scene_documentation)
  22. doc.intro(leaflet_documentation)
  23. doc.intro(tree_documentation)
  24. doc.intro(log_documentation)
  25. doc.intro(editor_documentation)
  26. doc.intro(code_documentation)
  27. doc.intro(json_editor_documentation)