-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathsidebars.js
More file actions
122 lines (119 loc) · 2.77 KB
/
sidebars.js
File metadata and controls
122 lines (119 loc) · 2.77 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/**
* Sidebars configuration for Image-Charts Documentation
*
* Following the Diataxis methodology:
* - Tutorials: Learning-oriented (step-by-step guides)
* - Guides: Task-oriented (how-to solve specific problems)
* - Reference: Information-oriented (technical specifications)
* - Concepts: Understanding-oriented (explanations and architecture)
*
* @see https://diataxis.fr/
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
mainSidebar: [
{
type: "doc",
id: "index",
label: "Getting Started",
},
{
type: "category",
label: "Chart Types",
collapsed: false,
items: [
"bar-charts",
"line-charts",
"pie-charts",
"polar-charts",
"radar-charts",
"bubble-charts",
"graph-viz-charts",
"progress-bar-charts",
"qr-codes",
"chart-js",
],
},
{
type: "category",
label: "Reference",
link: {
type: "doc",
id: "reference/index",
},
items: [
"reference/chart-type",
"reference/chart-size",
"reference/data-format",
"reference/color-format",
"reference/chart-title",
"reference/grid-lines",
"reference/chart-label",
"reference/markers",
"reference/chart-margin",
"reference/chart-axis",
"reference/legend-text-and-style",
"reference/chart-font",
"reference/background-fill",
"reference/animation",
"reference/output-format",
"reference/post-requests",
"reference/retina",
"reference/localization",
],
},
{
type: "category",
label: "Guides",
link: {
type: "doc",
id: "guides/index",
},
items: [
"guides/graph-in-google-sheets",
"guides/send-charts-to-slack",
"guides/salesforce-apex-charts",
"guides/charts-from-typeform",
],
},
{
type: "doc",
id: "gallery",
label: "Gallery",
},
{
type: "category",
label: "Resources",
items: [
"enterprise",
"sdk-and-libraries",
"on-premise",
"errors",
"limits-and-quotas",
],
},
{
type: "category",
label: "External Links",
items: [
{
type: "link",
label: "Status Page",
href: "https://status.image-charts.com",
},
{
type: "link",
label: "Changelog",
href: "https://headwayapp.co/image-charts-changelog",
},
{
type: "link",
label: "Chart Editor",
href: "https://editor.image-charts.com",
},
],
},
],
};
module.exports = sidebars;