section_data_elements.py 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. from nicegui import optional_features
  2. from . import (aggrid_documentation, circular_progress_documentation, code_documentation, doc, echart_documentation,
  3. editor_documentation, fullcalendar_documentation, highchart_documentation, json_editor_documentation,
  4. leaflet_documentation, line_plot_documentation, linear_progress_documentation, log_documentation,
  5. plotly_documentation, pyplot_documentation, scene_documentation, spinner_documentation,
  6. table_documentation, 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)
  28. doc.intro(fullcalendar_documentation)