Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
26e78b9
feat(components/charts): add @skyux/charts library
ThomasOrtiz Apr 1, 2026
59c76b5
feat(charts): update measure axis with min/max/preferredMin/preferredMax
ThomasOrtiz Apr 3, 2026
ee3f88f
feat(components/charts): remove null values from bar and line chart d…
ThomasOrtiz Apr 3, 2026
b4dbc6b
bar chart: remove floating bar ([min, max] range) support
ThomasOrtiz Apr 6, 2026
c7065fd
feat(playground/charts): enhance chart demos with new Data density an…
ThomasOrtiz Apr 8, 2026
7b2580f
add initial work for Data Density and Responsiveness handling
ThomasOrtiz Apr 9, 2026
c0bc80d
refactor: simplify indicator drawing and add documentation
ThomasOrtiz Apr 10, 2026
957ad04
remove temporary comments
ThomasOrtiz Apr 10, 2026
403261c
add comments to chart-style service
ThomasOrtiz Apr 10, 2026
addc12e
fix: cleanup public api index.ts by removing things that no longer ne…
ThomasOrtiz Apr 13, 2026
7f4a710
Update documentation.json with Chart, Axis, and Bar Chart components
ThomasOrtiz Apr 13, 2026
01ee373
refactor: Use numberAttribute for min/max/preferredMin/preferredMax
ThomasOrtiz Apr 14, 2026
d42c355
refactor: update numberAttribute usage
ThomasOrtiz Apr 14, 2026
a33d58c
Mark `series.id` as internal
ThomasOrtiz Apr 14, 2026
8194c17
refactor: rename chart component selectors to be prefixed with `sky-c…
ThomasOrtiz Apr 14, 2026
9c5c540
refactor: Rename SkyChartClickedDataPoint to SkyChartDataPointClickArgs
ThomasOrtiz Apr 14, 2026
8d11b80
refactor: rename file ands symbols to match the `sky-chart-*` / `SkyC…
ThomasOrtiz Apr 14, 2026
2d9afe1
refactor: rename `dataPointsClickable` to `dataPointsClickEnabled` an…
ThomasOrtiz Apr 14, 2026
e024b03
refactor: update documentation with latest class names
ThomasOrtiz Apr 14, 2026
4ac0139
refactor: update measure axis configuration to support overflow optio…
ThomasOrtiz Apr 14, 2026
0228464
Run "npm run dev:format"
ThomasOrtiz Apr 15, 2026
f48ccec
tests: add ChartLegend tests and update ChartStyle tests
ThomasOrtiz Apr 15, 2026
d478b1b
fix: update the canvas' role from "img" to "application" so that scre…
ThomasOrtiz Apr 18, 2026
075a9ce
refactor: implement legend accessibility feedback
ThomasOrtiz Apr 18, 2026
656b7ca
(test) add chart css/style/helper tests
ThomasOrtiz Apr 18, 2026
1107442
(test) add tests for shared/plugins
ThomasOrtiz Apr 18, 2026
d1903e5
(test) add tests for category axis, measure axis, and chart data grid…
ThomasOrtiz Apr 19, 2026
93baa9d
(fix) chart should not be wrapped in a <section>
ThomasOrtiz Apr 20, 2026
f66048c
Add missing peers
ThomasOrtiz Apr 20, 2026
032f25a
(feat) update chart context menu and items to have accessible labels
ThomasOrtiz Apr 20, 2026
5933181
(fix) hide heading and subtitle from screen reader when not visible
ThomasOrtiz Apr 20, 2026
b7854ba
(feat) surround chart in a figure and generate chart summary from cha…
ThomasOrtiz Apr 21, 2026
b3d3f2f
refactor: consolidate buildChartSummary into a helper
ThomasOrtiz Apr 21, 2026
3e4850f
refactor: do not expose internal IDs on series and data point components
ThomasOrtiz Apr 21, 2026
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
1 change: 1 addition & 0 deletions .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
components/assets
components/autonumeric
components/avatar
components/charts
components/code-examples
components/colorpicker
components/config
Expand Down
1 change: 1 addition & 0 deletions apps/playground/src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export const routes: Routes = [
{
path: '',
loadChildren: () => import('./home/home.module').then((m) => m.HomeModule),
title: 'Home',
},
{
path: 'components',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { Routes } from '@angular/router';

import { ChartBarDemoComponent } from './chart-bar-demo.component';

const BAR_CHART_ROUTES: Routes = [
{
path: '',
component: ChartBarDemoComponent,
title: 'Charts - Bar chart demo',
data: {
name: 'Bar chart',
icon: 'bar-chart-horizontal',
library: 'charts',
},
},
];

export default BAR_CHART_ROUTES;
Loading
Loading