Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move Charting concepts under Contributor Guide #68

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions apps/docsite/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,20 @@ const sidebars: SidebarsConfig = {
items: changelog.changelogOrder,
},
"Start Developing",
"Contributor Guide",
"Technical Details",
"Detailed Implementation Steps",
{
type: "category",
label: "Charting Concepts",
items: [
{
type: "autogenerated",
dirName: "Charting-Concepts",
},
],
type: 'category',
label: 'Contributor Guide',
link: {
type: 'doc',
id: 'Contributor Guide',
},
items:[{
type:"autogenerated",
dirName:"Charting-Concepts"
}]
},
"Technical Details",
"Detailed Implementation Steps",
"Debugging",
"Implementation Best Practices",
"Accessibility",
Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/AreaChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Area Chart
# Area Chart

![Areachartpic1.png](../assets/images/Areachartpic1.png)

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/DonutChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Donut Chart
# Donut Chart

![DonutChart1.png](../assets/images/DonutChart1.png)

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/GaugeChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Gauge Chart
# Gauge Chart

Gauge chart measures the progress of a metric against its target and its primary components are a speedometer and a needle. The speedometer usually consists of color-coded segments progressing value from left to right.

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/GroupedVerticalBarChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Grouped Vertical Bar Chart
# Grouped Vertical Bar Chart

![GroupedVerticalBarChart1.png](../assets/images/GVBC1.png)

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/HeatMapChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Heatmap Chart
# Heatmap Chart

A heatmap chart is a type of data visualization that represents data values as colors in a grid of rectangles. Each cell's color intensity corresponds to the value it represents, making it easy to spot patterns and variations in the data.

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/HorizontalBarChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Horizontal Bar Chart
# Horizontal Bar Chart

A horizontal bar chart is a chart that presents categorical data with rectangular bars with lengths proportional to the values they represent. This type of chart is particularly useful when the intention is to show comparisons among different categories and the labels for those categories are long.

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/LineChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Line Chart
# Line Chart

Line charts are a versatile type of graph used to visualize data trends over time. They are commonly used in various fields and industries for different purposes.

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/SankeyChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor Guide: Sankey Chart
# Sankey Chart

Sankey charts are a type of data visualization that are particularly useful for showing the flow of resources, energy, or information through a system. They are characterized by their flowing, interconnected arrows that represent the quantity or value of something as it moves from one stage or category to another.

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/SparklineChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Sparkline Chart
# Sparkline Chart

![Sparkline1.png](../assets/images/Sparkline1.png)

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/StackedBarChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Stacked Bar Chart
# Stacked Bar Chart

A stacked bar chart is a type of data visualization that represents data using rectangular bars with lengths proportional to the values they represent. In a stacked bar chart, each bar is divided into segments, and the segments represent different categories or components. The segments are stacked next to each other to show the total value of each bar.

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/VerticalBarChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Vertical Bar Chart
# Vertical Bar Chart

![VerticalBarChart1.png](../assets/images/VBC1.png)

Expand Down
2 changes: 1 addition & 1 deletion docs/Charting-Concepts/VerticalStackedBarChart.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributor guide: Vertical Stacked Bar Chart
# Vertical Stacked Bar Chart

![VerticalStackedBarChart1.png](../assets/images/VSBC1.png)

Expand Down
Loading