diff --git a/projects/demo/src/modules/components/axes/index.html b/projects/demo/src/modules/components/axes/index.html index b5c37b8dd170..1d7cabeb8d1f 100644 --- a/projects/demo/src/modules/components/axes/index.html +++ b/projects/demo/src/modules/components/axes/index.html @@ -34,121 +34,133 @@ [verticalLinesHandler]="verticalLinesHandler" /> - - + Axis X - - + + Labels for X. Empty string is empty stroke, null — no stroke - - + + Axis Y - - + + Inset of labels on axis Y - - + + Labels for Y - - + + Name of Y axis - - + + Inset labels for Y - - + + Secondary Y axis labels - - + + Secondary Y axis name - - + + Horizontal lines number - - + + Horizontal lines type handler - - + + Number of vertical lines - - + + Vertical lines type handler - - + + diff --git a/projects/demo/src/modules/components/axes/index.ts b/projects/demo/src/modules/components/axes/index.ts index b212f20d1378..f46eb89dc830 100644 --- a/projects/demo/src/modules/components/axes/index.ts +++ b/projects/demo/src/modules/components/axes/index.ts @@ -3,10 +3,11 @@ import {changeDetection} from '@demo/emulate/change-detection'; import {TuiDemo} from '@demo/utils'; import type {TuiLineHandler, TuiLineType} from '@taiga-ui/addon-charts'; import {TUI_ALWAYS_DASHED, TUI_ALWAYS_SOLID, TuiAxes} from '@taiga-ui/addon-charts'; +import {TuiDocAPI, TuiDocAPIItem} from '@taiga-ui/addon-doc'; @Component({ standalone: true, - imports: [TuiAxes, TuiDemo], + imports: [TuiAxes, TuiDemo, TuiDocAPI, TuiDocAPIItem], templateUrl: './index.html', styleUrls: ['./index.less'], changeDetection,