Skip to content

Commit 41a397d

Browse files
committed
Add radial chart & remove donut chart
1 parent 938c2a1 commit 41a397d

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

src/.vuepress/components/chart-builder.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ export default {
159159
{ id: 'column', label: 'Column', type: 'button' },
160160
{ id: 'area', label: 'Area', type: 'button' },
161161
{ id: 'line', label: 'Line', type: 'button' },
162+
{ id: 'radial', label: 'Radial', type: 'button', disabled: 'disabled' },
162163
{ id: 'pie', label: 'Pie', type: 'button', disabled: 'disabled' },
163-
{ id: 'donut', label: 'Donut', type: 'button', disabled: 'disabled' },
164164
{ id: 'radar', label: 'Radar', type: 'button', disabled: 'disabled' },
165165
{ id: 'polar', label: 'Polar', type: 'button', disabled: 'disabled' },
166166
],

src/.vuepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ module.exports = {
105105
'/charts/column',
106106
'/charts/area',
107107
'/charts/line',
108+
'/charts/radial',
108109
'/charts/pie',
109-
'/charts/donut',
110110
'/charts/polar',
111111
'/charts/radar',
112112
'/charts/mixed',

src/charts/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Before using charts, check the development status. If a chart type is already re
1717
| [Column](./column/) | <Badge type="tip" vertical="middle" text="Released" /> | `charts-css column` |
1818
| [Area](./area/) | <Badge type="tip" vertical="middle" text="Released" /> | `charts-css area ` |
1919
| [Line](./line/) | <Badge type="tip" vertical="middle" text="Released" /> | `charts-css line` |
20+
| [Radial](./radial/) | <Badge type="warning" vertical="middle" text="Under Development" /> | `charts-css radial` |
2021
| [Pie](./pie/) | <Badge type="warning" vertical="middle" text="Under Development" /> | `charts-css pie` |
21-
| [Donut](./donut/) | <Badge type="warning" vertical="middle" text="Under Development" /> | `charts-css donut` |
2222
| [Radar](./radar/) | <Badge type="warning" vertical="middle" text="Under Development" /> | `charts-css radar` |
2323
| [Polar](./polar/) | <Badge type="warning" vertical="middle" text="Under Development" /> | `charts-css polar` |
2424

@@ -52,8 +52,8 @@ The current state of supported feature:
5252
<th scope="col"> Column </th>
5353
<th scope="col"> Area </th>
5454
<th scope="col"> Line </th>
55+
<th scope="col"> Radial </th>
5556
<th scope="col"> Pie </th>
56-
<th scope="col"> Donut </th>
5757
<th scope="col"> Radar </th>
5858
<th scope="col"> Polar </th>
5959
</tr>

src/charts/donut.md renamed to src/charts/radial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
permalink: /charts/donut/
2+
permalink: /charts/radial/
33
---
44

5-
# Donut <Badge type="warning" vertical="top" text="Under Development" />
5+
# Radial <Badge type="warning" vertical="top" text="Under Development" />
66

77
::: warning Note
88
This chart is still [under development](/development/roadmap/). It's not yet included in the latest release.

src/development/roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Planned development and the release of new chart types:
1919

2020
* **Q3 2021** - Pie chart.
2121

22-
* **Q3 2021** - Donut chart.
22+
* **Q4 2021** - Radial chart.
2323

2424
* **Q4 2021** - Polar Chart.
2525

src/examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Examples of different layouts for each chart type:
1616
* [Column Chart Examples](/examples/column/)
1717
* [Area Chart Examples](/examples/area/)
1818
* [Line Chart Examples](/examples/line/)
19+
* ~~[Radial Chart Examples](/examples/radial/)~~
1920
* ~~[Pie Chart Examples](/examples/pie/)~~
20-
* ~~[Donut Chart Examples](/examples/donut/)~~
2121
* ~~[Radar Chart Examples](/examples/radar/)~~
2222
* ~~[Polar Chart Examples](/examples/polar/)~~
2323

src/examples/donut.md renamed to src/examples/radial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
permalink: /examples/donut/
2+
permalink: /examples/radial/
33
editLink: false
44
prev: false
55
next: false
66
pageClass: example-page
77
---
88

9-
# Donut Examples
9+
# Radial Examples
1010

11-
<table class="charts-css donut">
11+
<table class="charts-css radial">
1212
<caption>Years Compared</caption>
1313
<thead>
1414
<tr>

0 commit comments

Comments
 (0)