forked from bqplot/bqplot
-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
92 lines (92 loc) · 2.75 KB
/
mkdocs.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
site_name: bqplot
site_url: https://bqplot.github.io/bqplot
repo_name: bqplot/bqplot
repo_url: https://github.com/bqplot/bqplot
theme:
name: material
custom_dir: custom_theme/
logo: https://raw.githubusercontent.com/bqplot/design/master/bqplot-logo-notext-nobackground.svg
favicon: https://raw.githubusercontent.com/bqplot/design/master/bqplot-logo-notext-nobackground.svg
extra:
homepage: https://bqplot.github.io/bqplot
palette:
- scheme: default
primary: pink
accent: pink
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: pink
accent: pink
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.sections
- navigation.tabs
- content.code.copy
- content.code.annotate
- search.suggest
- search.highlight
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.inlinehilite
- admonition
- pymdownx.details
- pymdownx.superfences
- md_in_html
- attr_list
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
show_root_toc_entry: false
docstring_style: numpy
docstring_section_style: spacy
show_source: false
nav:
- bqplot: index.md
- Installation: installation.md
- Usage:
- Pyplot: usage/pyplot.md
- Object Model: usage/object-model.md
- Updating Plots: usage/updating-plots.md
- Figure: usage/figure.md
- Scales: usage/scales.md
- Axes: usage/axes.md
- Marks:
- Introduction: usage/marks/index.md
- Lines: usage/marks/lines.md
- Bars: usage/marks/bars.md
- Scatter: usage/marks/scatter.md
- Pie: usage/marks/pie.md
- Map: usage/marks/maps.md
- Heatmap: usage/marks/heatmap.md
- Marketmap: usage/marks/market.md
- Interactions:
- Mark Interactions: usage/interactions/mark-interactions.md
- Selectors: usage/interactions/selectors.md
- Panzoom: usage/interactions/panzoom.md
- Handdraw: usage/interactions/hand-draw.md
- Advanced:
- Linking With ipywidgets: usage/advanced/linking-ipywidgets.md
- Dashboarding: usage/advanced/dashboards.md
- Compound Widgets: usage/advanced/compound-widgets.md
- API Documentation:
- Pyplot: api/pyplot.md
- Figure: api/figure.md
- Scales: api/scales.md
- Axes: api/axes.md
- Marks: api/marks.md
- Toolbar: api/toolbar.md
- Interactions: api/interactions.md
- MarketMap: api/market_map.md
- Contributing: contributing.md