我正在使用剑道图表,我希望将y轴上的类别和x轴上的日期设置为静态,并希望图表的滚动条而不是采用div,并且还希望条形小并且字体大小应为比示例中要少。
答案 0 :(得分:1)
要实现这一目标,必须
app.component.ts 进行以下更改:
@Component({
selector: 'my-app',
template: `
<div >
<kendo-chart style="width: 3832px" [valueAxis]="valueAxis" [ngStyle]="{ 'height.px': chartHeight }">
<kendo-chart-plot-area background="#F2F2F2"></kendo-chart-plot-area>
<kendo-chart-series>
<kendo-chart-series-item *ngFor="let series of model"
type="rangeBar" [spacing]="-1" [data]="series.data" [opacity]="0.8" fromField="Start" toField="End" categoryField="Category">
</kendo-chart-series-item>
</kendo-chart-series>
</kendo-chart>
</div>
`,
styles:[`
kendo-chart{ max-width: 525px; max-height: 300px;}
::ng-deep g>text{ font-size: 11px !important;}
`]
})