如何更改剑道图表的背景图像?
Posted
技术标签:
【中文标题】如何更改剑道图表的背景图像?【英文标题】:How can I change Kendo Chart's Background Image? 【发布时间】:2014-09-15 23:53:22 【问题描述】:如何使用此代码更改剑道图表的背景?有可能吗?
.htmlAttributes(new style = "background: url('~/shared/pics/harita.png')" )
这有什么问题?
【问题讨论】:
【参考方案1】:请对您的图表进行以下更改以在背景中显示图像。
在图表定义中,确保您已将图表区域背景设置为透明。 见下文:
@(Html.Kendo().StockChart<ChartModel>()
.Name("stockDemoChart")
.................
.................
.ChartArea(chartArea => chartArea.Background("transparent"))
您可以根据图表名称设置样式,而不是在 HtmlAttributes 中指定图表背景。见下文:
<style>
#stockDemoChart
background: center no-repeat url('@Url.Content("~/shared/pics/demo.png")')
</style>
【讨论】:
以上是关于如何更改剑道图表的背景图像?的主要内容,如果未能解决你的问题,请参考以下文章