是否可以为图表添加标题?
我想向图表添加标题,例如 仪表示例或饼图。我想在图表下方或上方显示标题。这可能吗?我一直在寻找,但找不到任何与此相关的信息。如果是这样,有什么建议可以分享吗? 它会是这样的
编辑: i发现有一个属性可以为 Ex.draw 包 中的标题或任何标签创建文本精灵。 但我不明白如何使用它..
这里有人做过同样的事情吗?
I want to add a title to a chart, like in the gauge example or a pie chart. I want to display a title under or on top of the chart. Is this possible? I've been looking and can't find anything about this. if so , any tip to share?
it would be something like this
EDIT: i found there is a property to create text sprites for the title or any labels at the Ex.draw package.
but i couldnt understand how to use it..
anybdy here have done the same?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
由于 Ext.chart.Chart 是一个 Ext.draw.Component,因此您可以将精灵添加为它的项目。尝试使用这个:
Since Ext.chart.Chart is an Ext.draw.Component, you can add sprites as items of it. Try to use this:
您可以简单地将精灵添加到 cart.surface:
希望它有帮助。
You can simply add a sprite to the cart.surface:
Hope it helps.
我建议不要使用精灵,因为您可能希望标题居中。对容器大小或文本长度的任何更改都不会自动处理,因为此处其他答案中描述的精灵方法都对位置进行了硬编码。使用精灵居中可以通过一些努力来完成,但我会考虑利用布局系统。这样,当您调整页面大小时,您的页面内容可以自动正确定位。
I'd recommend not using a sprite since you'll likely want the title centered. Any changes to the container size or your text length won't be automatically handled since the sprite approaches described in other answers here all hardcode the location. Centering with a sprite can be done with some effort but I'd consider leveraging the layout system. This way your page contents can automatically be positioned nicely when your page resizes.
只需将您的图表放入带有您需要的标题的面板中即可。
Just put your chart inside a panel with the title you need.
是的,您可以使用 Ext.chart.axis.Gauge。内部项目放置一个带有标题的轴配置:
Yes you can using Ext.chart.axis.Gauge. Inside items put an axis config with a title: