TelerikChart Width



是否有办法使TelerikChart嵌套在TileLayoutItem内容的100%宽度?

下面的内容不起作用,(图表在右端被切断)

<TileLayoutItem ColSpan="2" RowSpan="2">
<Content>           
<TelerikChart Width="100%" Height="100%">
<ChartSeriesItems>
<ChartSeries Type="ChartSeriesType.Line" Name="Completed" Data="@_clientDuration">
</ChartSeries>
</ChartSeriesItems>
<ChartValueAxes>
<ChartValueAxis Color="red"></ChartValueAxis>
</ChartValueAxes>
<ChartCategoryAxes>
<ChartCategoryAxis Categories="@_xAxisItems"></ChartCategoryAxis>
</ChartCategoryAxes>
</TelerikChart>
</Content>
</TileLayoutItem>

应该是这样的,除非有更多的CSS从网站破坏东西。此外,当瓷砖调整大小时,您可能想要.Refresh()图表。

当我在样板项目模板中运行所提供的代码片段并添加一些虚拟数据时,它对我来说运行得很好,并且在这个演示中也运行相同的场景。

因此,问题可能与项目中的特定内容有关,如果与演示或空白项目进行比较没有帮助,我认为更好的方法是联系Telerik支持。

相关内容

  • 没有找到相关文章

最新更新