如何在 Flex 3 中拥有类似于 google geomap 可视化示例中的悬停详细信息框
我想知道是否有一个已经可用的悬停详细信息组件,类似于 Google 地理地图可视化示例,显示城市名称及其详细信息,或可用于悬停详细信息框的任何其他类似组件。
i want to know if there is a already available hover details component similar to the one shown in google geomap visualizations examples which shows city name and its details, or any other similar component that can be used a hover details box.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Flex 框架自己的 ToolTip 类来完成此操作。 所有标准 Flex 组件(派生自 UIComponent)都有一个用于创建工具提示的 toolTip 属性。 标准工具提示样式是黄色背景上的黑色文本,但这可以使用 CSS 轻松更改。 对于一些更复杂的样式,您可以使用 ToolTip 类中 TextField 上的 htmlText 属性。
以下是一些示例: http://livedocs.adobe .com/flex/3/html/help.html?content=tooltips_3.html
You could conceivably do this with the Flex framework's own ToolTip class. All standard Flex components (derived from UIComponent) have a toolTip property that's used to create tooltips. The standard tooltip style is black text on a yellow-ish background, but this is easily changed using CSS. For some more elaborate styling, you could use the htmlText property on the TextField within the ToolTip class.
Here are some examples: http://livedocs.adobe.com/flex/3/html/help.html?content=tooltips_3.html