Charts: update data in demos (part 2)#32927
Conversation
There was a problem hiding this comment.
Pull request overview
Updates several Charts demo samples across jQuery/Vue/React/Angular to use newer datasets (mostly shifting year-based series to 2019–2024/2020–2022) and to refresh user-facing titles/subtitles to match the updated data context.
Changes:
- Refreshed multiple demo data sources (bars, stacked bars, pies, population pyramid, area) with newer values and/or categories.
- Updated series bindings (
valueField/value-field) to match new year keys in the updated datasets. - Updated demo titles/subtitles (e.g., “(Billions USD)”, “2024” labels) for consistency with the refreshed data.
Reviewed changes
Copilot reviewed 105 out of 105 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| apps/demos/Demos/Charts/SideBySideBar/jQuery/index.js | Updates series year fields and title text for refreshed GSP dataset. |
| apps/demos/Demos/Charts/SideBySideBar/jQuery/data.js | Replaces GSP values and year keys (2016–2018 → 2022–2024). |
| apps/demos/Demos/Charts/SideBySideBar/Vue/data.ts | Replaces GSP values and year keys (2016–2018 → 2022–2024). |
| apps/demos/Demos/Charts/SideBySideBar/Vue/App.vue | Updates title and series bindings to new year fields. |
| apps/demos/Demos/Charts/SideBySideBar/ReactJs/data.js | Replaces GSP values and year keys (2016–2018 → 2022–2024). |
| apps/demos/Demos/Charts/SideBySideBar/ReactJs/App.js | Updates title and series bindings to new year fields. |
| apps/demos/Demos/Charts/SideBySideBar/React/data.ts | Replaces GSP values and year keys (2016–2018 → 2022–2024). |
| apps/demos/Demos/Charts/SideBySideBar/React/App.tsx | Updates title and series bindings to new year fields. |
| apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.service.ts | Updates model + dataset year fields (2016–2018 → 2022–2024). |
| apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.component.html | Updates title and series bindings to new year fields. |
| apps/demos/Demos/Charts/Selection/jQuery/index.js | Updates series bindings and labels to 2019–2021 ranges. |
| apps/demos/Demos/Charts/Selection/jQuery/data.js | Replaces export-change dataset countries/values and year keys. |
| apps/demos/Demos/Charts/Selection/Vue/data.ts | Replaces export-change dataset countries/values and year keys. |
| apps/demos/Demos/Charts/Selection/Vue/App.vue | Updates series bindings and labels to new year fields. |
| apps/demos/Demos/Charts/Selection/ReactJs/data.js | Replaces export-change dataset countries/values and year keys. |
| apps/demos/Demos/Charts/Selection/ReactJs/App.js | Updates series bindings and labels to new year fields. |
| apps/demos/Demos/Charts/Selection/React/data.ts | Replaces export-change dataset countries/values and year keys. |
| apps/demos/Demos/Charts/Selection/React/App.tsx | Updates series bindings and labels to new year fields. |
| apps/demos/Demos/Charts/Selection/Angular/app/app.service.ts | Updates model + dataset year fields (2007/2008 → 2019/2020). |
| apps/demos/Demos/Charts/Selection/Angular/app/app.component.html | Updates series bindings and labels to new year fields. |
| apps/demos/Demos/Charts/PieWithMultipleSeries/jQuery/index.js | Updates subtitle year shown in the demo title. |
| apps/demos/Demos/Charts/PieWithMultipleSeries/jQuery/data.js | Replaces import/export dataset values and country list. |
| apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/data.ts | Replaces import/export dataset values and country list. |
| apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/App.vue | Updates subtitle year shown in the demo title. |
| apps/demos/Demos/Charts/PieWithMultipleSeries/ReactJs/data.js | Replaces import/export dataset values and country list. |
| apps/demos/Demos/Charts/PieWithMultipleSeries/ReactJs/App.js | Updates subtitle year shown in the demo title. |
| apps/demos/Demos/Charts/PieWithMultipleSeries/React/data.ts | Replaces import/export dataset values and country list. |
| apps/demos/Demos/Charts/PieWithMultipleSeries/React/App.tsx | Updates subtitle year shown in the demo title. |
| apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.service.ts | Replaces import/export dataset values and country list. |
| apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.component.html | Updates subtitle year shown in the demo title. |
| apps/demos/Demos/Charts/MultiplePointSelection/jQuery/index.js | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/MultiplePointSelection/jQuery/data.js | Replaces medal counts and updates country list. |
| apps/demos/Demos/Charts/MultiplePointSelection/Vue/data.ts | Replaces medal counts and updates country list. |
| apps/demos/Demos/Charts/MultiplePointSelection/Vue/App.vue | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/MultiplePointSelection/ReactJs/data.js | Replaces medal counts and updates country list. |
| apps/demos/Demos/Charts/MultiplePointSelection/ReactJs/App.js | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/MultiplePointSelection/React/data.ts | Replaces medal counts and updates country list. |
| apps/demos/Demos/Charts/MultiplePointSelection/React/App.tsx | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.service.ts | Replaces medal counts and updates country list. |
| apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.component.html | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/FullStackedBar/jQuery/index.js | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/FullStackedBar/jQuery/data.js | Replaces energy consumption dataset values and countries. |
| apps/demos/Demos/Charts/FullStackedBar/Vue/data.ts | Replaces energy consumption dataset values and countries. |
| apps/demos/Demos/Charts/FullStackedBar/Vue/App.vue | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/FullStackedBar/ReactJs/data.js | Replaces energy consumption dataset values and countries. |
| apps/demos/Demos/Charts/FullStackedBar/ReactJs/App.js | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/FullStackedBar/React/data.ts | Replaces energy consumption dataset values and countries. |
| apps/demos/Demos/Charts/FullStackedBar/React/App.tsx | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.service.ts | Replaces energy consumption dataset values and countries. |
| apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.component.html | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/ExportCustomMarkup/jQuery/index.js | Updates series list to newer year fields (drops 1990, adds 2020–2022). |
| apps/demos/Demos/Charts/ExportCustomMarkup/jQuery/data.js | Updates oil production dataset values and year keys. |
| apps/demos/Demos/Charts/ExportCustomMarkup/Vue/data.ts | Updates oil production dataset values and year keys. |
| apps/demos/Demos/Charts/ExportCustomMarkup/Vue/App.vue | Updates series list to newer year fields (drops 1990, adds 2020–2022). |
| apps/demos/Demos/Charts/ExportCustomMarkup/ReactJs/data.js | Updates oil production dataset values and year keys. |
| apps/demos/Demos/Charts/ExportCustomMarkup/ReactJs/App.js | Updates series list to newer year fields (drops 1990, adds 2020–2022). |
| apps/demos/Demos/Charts/ExportCustomMarkup/React/data.ts | Updates oil production dataset values and year keys. |
| apps/demos/Demos/Charts/ExportCustomMarkup/React/App.tsx | Updates series list to newer year fields (drops 1990, adds 2020–2022). |
| apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.service.ts | Updates model + dataset year fields (drops 1990/2016/2017, adds 2020–2022). |
| apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.component.html | Updates series list to newer year fields (drops 1990, adds 2020–2022). |
| apps/demos/Demos/Charts/CustomBarWidth/jQuery/index.js | Updates series list to newer year fields (removes 1970/1980/2008/2009; adds 2010/2020–2022). |
| apps/demos/Demos/Charts/CustomBarWidth/jQuery/data.js | Updates oil production dataset values/countries and year keys. |
| apps/demos/Demos/Charts/CustomBarWidth/Vue/data.ts | Updates oil production dataset values/countries and year keys. |
| apps/demos/Demos/Charts/CustomBarWidth/Vue/App.vue | Updates series list to newer year fields. |
| apps/demos/Demos/Charts/CustomBarWidth/ReactJs/data.js | Updates oil production dataset values/countries and year keys. |
| apps/demos/Demos/Charts/CustomBarWidth/ReactJs/App.js | Updates series list to newer year fields. |
| apps/demos/Demos/Charts/CustomBarWidth/React/data.ts | Updates oil production dataset values/countries and year keys. |
| apps/demos/Demos/Charts/CustomBarWidth/React/App.tsx | Updates series list to newer year fields. |
| apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.service.ts | Updates model + dataset year fields and country list. |
| apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.component.html | Updates series list to newer year fields. |
| apps/demos/Demos/Charts/CenterLabelCustomization/jQuery/index.html | Updates displayed year in the page title text. |
| apps/demos/Demos/Charts/CenterLabelCustomization/jQuery/data.js | Replaces energy production dataset values and commodity mix. |
| apps/demos/Demos/Charts/CenterLabelCustomization/Vue/data.ts | Replaces energy production dataset values and commodity mix. |
| apps/demos/Demos/Charts/CenterLabelCustomization/Vue/App.vue | Updates displayed year in the page title text. |
| apps/demos/Demos/Charts/CenterLabelCustomization/ReactJs/data.js | Replaces energy production dataset values and commodity mix. |
| apps/demos/Demos/Charts/CenterLabelCustomization/ReactJs/App.js | Updates displayed year in the page title text. |
| apps/demos/Demos/Charts/CenterLabelCustomization/React/data.ts | Replaces energy production dataset values and commodity mix. |
| apps/demos/Demos/Charts/CenterLabelCustomization/React/App.tsx | Updates displayed year in the page title text. |
| apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.service.ts | Replaces energy production dataset values and commodity mix. |
| apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.html | Updates displayed year in the page title text. |
| apps/demos/Demos/Charts/BiDirectionalBarChart/jQuery/index.js | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/BiDirectionalBarChart/jQuery/data.js | Replaces population pyramid distribution values and consolidates oldest age bucket. |
| apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/data.ts | Replaces population pyramid distribution values and consolidates oldest age bucket. |
| apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/App.vue | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/BiDirectionalBarChart/ReactJs/data.js | Replaces population pyramid distribution values and consolidates oldest age bucket. |
| apps/demos/Demos/Charts/BiDirectionalBarChart/ReactJs/App.js | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/BiDirectionalBarChart/React/data.ts | Replaces population pyramid distribution values and consolidates oldest age bucket. |
| apps/demos/Demos/Charts/BiDirectionalBarChart/React/App.tsx | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.service.ts | Replaces population pyramid distribution values and consolidates oldest age bucket. |
| apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.component.html | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/BarColorCustomization/jQuery/index.js | Updates subtitle date to reflect newer “as of” reference. |
| apps/demos/Demos/Charts/BarColorCustomization/Vue/App.vue | Updates subtitle date to reflect newer “as of” reference. |
| apps/demos/Demos/Charts/BarColorCustomization/ReactJs/App.js | Updates subtitle date to reflect newer “as of” reference. |
| apps/demos/Demos/Charts/BarColorCustomization/React/App.tsx | Updates subtitle date to reflect newer “as of” reference. |
| apps/demos/Demos/Charts/BarColorCustomization/Angular/app/app.component.html | Updates subtitle date to reflect newer “as of” reference. |
| apps/demos/Demos/Charts/Area/jQuery/index.js | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/Area/jQuery/data.js | Replaces population age-structure dataset values/countries. |
| apps/demos/Demos/Charts/Area/Vue/data.ts | Replaces population age-structure dataset values/countries. |
| apps/demos/Demos/Charts/Area/Vue/App.vue | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/Area/ReactJs/data.js | Replaces population age-structure dataset values/countries. |
| apps/demos/Demos/Charts/Area/ReactJs/App.js | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/Area/React/data.ts | Replaces population age-structure dataset values/countries. |
| apps/demos/Demos/Charts/Area/React/App.tsx | Updates title year shown in the demo title. |
| apps/demos/Demos/Charts/Area/Angular/app/app.service.ts | Replaces population age-structure dataset values/countries. |
| apps/demos/Demos/Charts/Area/Angular/app/app.component.html | Updates title year shown in the demo title. |
You can also share your feedback on Copilot code review. Take the survey.
There was a problem hiding this comment.
Pull request overview
Updates several DevExtreme Charts demos (across jQuery/Vue/React/Angular variants) to use refreshed, more recent datasets and to align demo titles/series labels with the new years/units.
Changes:
- Refresh demo datasets to newer year ranges (commonly 2019–2024 / 2020–2022 / 2022–2024) and updated country/state lists where applicable.
- Update chart series
valueField/namepairs to match renamed year fields in the new datasets. - Adjust chart titles/subtitles to reflect updated years and, in one case, add units to the title.
Reviewed changes
Copilot reviewed 105 out of 126 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| apps/demos/Demos/Charts/SideBySideBar/jQuery/index.js | Update series year fields and title units |
| apps/demos/Demos/Charts/SideBySideBar/jQuery/data.js | Refresh gross product values to 2022–2024 fields |
| apps/demos/Demos/Charts/SideBySideBar/Vue/data.ts | Refresh gross product values to 2022–2024 fields |
| apps/demos/Demos/Charts/SideBySideBar/Vue/App.vue | Update series year fields and title units |
| apps/demos/Demos/Charts/SideBySideBar/ReactJs/data.js | Refresh gross product values to 2022–2024 fields |
| apps/demos/Demos/Charts/SideBySideBar/ReactJs/App.js | Update series year fields and title units |
| apps/demos/Demos/Charts/SideBySideBar/React/data.ts | Refresh gross product values to 2022–2024 fields |
| apps/demos/Demos/Charts/SideBySideBar/React/App.tsx | Update series year fields and title units |
| apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.service.ts | Update model + data to 2022–2024 fields |
| apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.component.html | Update series year fields and title units |
| apps/demos/Demos/Charts/Selection/jQuery/index.js | Update series year fields (2019/2020) |
| apps/demos/Demos/Charts/Selection/jQuery/data.js | Refresh export change data to 2019/2020 fields |
| apps/demos/Demos/Charts/Selection/Vue/data.ts | Refresh export change data to 2019/2020 fields |
| apps/demos/Demos/Charts/Selection/Vue/App.vue | Update series year fields (2019/2020) |
| apps/demos/Demos/Charts/Selection/ReactJs/data.js | Refresh export change data to 2019/2020 fields |
| apps/demos/Demos/Charts/Selection/ReactJs/App.js | Update series year fields (2019/2020) |
| apps/demos/Demos/Charts/Selection/React/data.ts | Refresh export change data to 2019/2020 fields |
| apps/demos/Demos/Charts/Selection/React/App.tsx | Update series year fields (2019/2020) |
| apps/demos/Demos/Charts/Selection/Angular/app/app.service.ts | Update model + data to 2019/2020 fields |
| apps/demos/Demos/Charts/Selection/Angular/app/app.component.html | Update series year fields (2019/2020) |
| apps/demos/Demos/Charts/PieWithMultipleSeries/jQuery/index.js | Update subtitle year to 2024 |
| apps/demos/Demos/Charts/PieWithMultipleSeries/jQuery/data.js | Refresh import/export dataset values/countries |
| apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/data.ts | Refresh import/export dataset values/countries |
| apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/App.vue | Update subtitle year to 2024 |
| apps/demos/Demos/Charts/PieWithMultipleSeries/ReactJs/data.js | Refresh import/export dataset values/countries |
| apps/demos/Demos/Charts/PieWithMultipleSeries/ReactJs/App.js | Update subtitle year to 2024 |
| apps/demos/Demos/Charts/PieWithMultipleSeries/React/data.ts | Refresh import/export dataset values/countries |
| apps/demos/Demos/Charts/PieWithMultipleSeries/React/App.tsx | Update subtitle year to 2024 |
| apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.service.ts | Refresh import/export dataset values/countries |
| apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.component.html | Update subtitle year to 2024 |
| apps/demos/Demos/Charts/MultiplePointSelection/jQuery/index.js | Update title year to 2024 |
| apps/demos/Demos/Charts/MultiplePointSelection/jQuery/data.js | Refresh medal counts/countries |
| apps/demos/Demos/Charts/MultiplePointSelection/Vue/data.ts | Refresh medal counts/countries |
| apps/demos/Demos/Charts/MultiplePointSelection/Vue/App.vue | Update title year to 2024 |
| apps/demos/Demos/Charts/MultiplePointSelection/ReactJs/data.js | Refresh medal counts/countries |
| apps/demos/Demos/Charts/MultiplePointSelection/ReactJs/App.js | Update title year to 2024 |
| apps/demos/Demos/Charts/MultiplePointSelection/React/data.ts | Refresh medal counts/countries |
| apps/demos/Demos/Charts/MultiplePointSelection/React/App.tsx | Update title year to 2024 |
| apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.service.ts | Refresh medal counts/countries |
| apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.component.html | Update title year to 2024 |
| apps/demos/Demos/Charts/FullStackedBar/jQuery/index.js | Update title year to 2024 |
| apps/demos/Demos/Charts/FullStackedBar/jQuery/data.js | Refresh energy consumption dataset/countries |
| apps/demos/Demos/Charts/FullStackedBar/Vue/data.ts | Refresh energy consumption dataset/countries |
| apps/demos/Demos/Charts/FullStackedBar/Vue/App.vue | Update title year to 2024 |
| apps/demos/Demos/Charts/FullStackedBar/ReactJs/data.js | Refresh energy consumption dataset/countries |
| apps/demos/Demos/Charts/FullStackedBar/ReactJs/App.js | Update title year to 2024 |
| apps/demos/Demos/Charts/FullStackedBar/React/data.ts | Refresh energy consumption dataset/countries |
| apps/demos/Demos/Charts/FullStackedBar/React/App.tsx | Update title year to 2024 |
| apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.service.ts | Refresh energy consumption dataset/countries |
| apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.component.html | Update title year to 2024 |
| apps/demos/Demos/Charts/ExportCustomMarkup/jQuery/index.js | Update series list to 2000/2010/2020–2022 |
| apps/demos/Demos/Charts/ExportCustomMarkup/jQuery/data.js | Refresh oil production dataset/years |
| apps/demos/Demos/Charts/ExportCustomMarkup/Vue/data.ts | Refresh oil production dataset/years |
| apps/demos/Demos/Charts/ExportCustomMarkup/Vue/App.vue | Update series list to 2000/2010/2020–2022 |
| apps/demos/Demos/Charts/ExportCustomMarkup/ReactJs/data.js | Refresh oil production dataset/years |
| apps/demos/Demos/Charts/ExportCustomMarkup/ReactJs/App.js | Update series list to 2000/2010/2020–2022 |
| apps/demos/Demos/Charts/ExportCustomMarkup/React/data.ts | Refresh oil production dataset/years |
| apps/demos/Demos/Charts/ExportCustomMarkup/React/App.tsx | Update series list to 2000/2010/2020–2022 |
| apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.service.ts | Update model + data to 2000/2010/2020–2022 |
| apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.component.html | Update series list to 2000/2010/2020–2022 |
| apps/demos/Demos/Charts/CustomBarWidth/jQuery/index.js | Update series list to 1990/2000/2010/2020–2022 |
| apps/demos/Demos/Charts/CustomBarWidth/jQuery/data.js | Refresh oil production dataset/years/countries |
| apps/demos/Demos/Charts/CustomBarWidth/Vue/data.ts | Refresh oil production dataset/years/countries |
| apps/demos/Demos/Charts/CustomBarWidth/Vue/App.vue | Update series list to 1990/2000/2010/2020–2022 |
| apps/demos/Demos/Charts/CustomBarWidth/ReactJs/data.js | Refresh oil production dataset/years/countries |
| apps/demos/Demos/Charts/CustomBarWidth/ReactJs/App.js | Update series list to 1990/2000/2010/2020–2022 |
| apps/demos/Demos/Charts/CustomBarWidth/React/data.ts | Refresh oil production dataset/years/countries |
| apps/demos/Demos/Charts/CustomBarWidth/React/App.tsx | Update series list to 1990/2000/2010/2020–2022 |
| apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.service.ts | Update model + data to new years/countries |
| apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.component.html | Update series list to 1990/2000/2010/2020–2022 |
| apps/demos/Demos/Charts/CenterLabelCustomization/jQuery/index.html | Update displayed year in heading to 2024 |
| apps/demos/Demos/Charts/CenterLabelCustomization/jQuery/data.js | Refresh energy production dataset/slices |
| apps/demos/Demos/Charts/CenterLabelCustomization/Vue/data.ts | Refresh energy production dataset/slices |
| apps/demos/Demos/Charts/CenterLabelCustomization/Vue/App.vue | Update displayed year in heading to 2024 |
| apps/demos/Demos/Charts/CenterLabelCustomization/ReactJs/data.js | Refresh energy production dataset/slices |
| apps/demos/Demos/Charts/CenterLabelCustomization/ReactJs/App.js | Update displayed year in heading to 2024 |
| apps/demos/Demos/Charts/CenterLabelCustomization/React/data.ts | Refresh energy production dataset/slices |
| apps/demos/Demos/Charts/CenterLabelCustomization/React/App.tsx | Update displayed year in heading to 2024 |
| apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.service.ts | Refresh energy production dataset/slices |
| apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.html | Update displayed year in heading to 2024 |
| apps/demos/Demos/Charts/BiDirectionalBarChart/jQuery/index.js | Update title year to 2024 |
| apps/demos/Demos/Charts/BiDirectionalBarChart/jQuery/data.js | Refresh population pyramid distribution buckets |
| apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/data.ts | Refresh population pyramid distribution buckets |
| apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/App.vue | Update title year to 2024 |
| apps/demos/Demos/Charts/BiDirectionalBarChart/ReactJs/data.js | Refresh population pyramid distribution buckets |
| apps/demos/Demos/Charts/BiDirectionalBarChart/ReactJs/App.js | Update title year to 2024 |
| apps/demos/Demos/Charts/BiDirectionalBarChart/React/data.ts | Refresh population pyramid distribution buckets |
| apps/demos/Demos/Charts/BiDirectionalBarChart/React/App.tsx | Update title year to 2024 |
| apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.service.ts | Refresh population pyramid distribution buckets |
| apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.component.html | Update title year to 2024 |
| apps/demos/Demos/Charts/BarColorCustomization/jQuery/index.js | Update subtitle date to January 2024 |
| apps/demos/Demos/Charts/BarColorCustomization/Vue/App.vue | Update subtitle date to January 2024 |
| apps/demos/Demos/Charts/BarColorCustomization/ReactJs/App.js | Update subtitle date to January 2024 |
| apps/demos/Demos/Charts/BarColorCustomization/React/App.tsx | Update subtitle date to January 2024 |
| apps/demos/Demos/Charts/BarColorCustomization/Angular/app/app.component.html | Update subtitle date to January 2024 |
| apps/demos/Demos/Charts/Area/jQuery/index.js | Update title year to 2024 |
| apps/demos/Demos/Charts/Area/jQuery/data.js | Refresh population age structure dataset/countries |
| apps/demos/Demos/Charts/Area/Vue/data.ts | Refresh population age structure dataset/countries |
| apps/demos/Demos/Charts/Area/Vue/App.vue | Update title year to 2024 |
| apps/demos/Demos/Charts/Area/ReactJs/data.js | Refresh population age structure dataset/countries |
| apps/demos/Demos/Charts/Area/ReactJs/App.js | Update title year to 2024 |
| apps/demos/Demos/Charts/Area/React/data.ts | Refresh population age structure dataset/countries |
| apps/demos/Demos/Charts/Area/React/App.tsx | Update title year to 2024 |
| apps/demos/Demos/Charts/Area/Angular/app/app.service.ts | Refresh population age structure dataset/countries |
| apps/demos/Demos/Charts/Area/Angular/app/app.component.html | Update title year to 2024 |
You can also share your feedback on Copilot code review. Take the survey.
No description provided.