python-visualization / python-visualization/folium
Multiple Vincent/Vega charts in a popup?
未关闭
还没有人认领这个 Issue。
enhancement
- 主要语言
- Python
- 星标
- 7.4k
- 派生
- 2.3k
- 平均合并
- 17 小时 22 分钟
- 30 天内合并 PR
- 11
描述
I'm trying to add two Vincent bar charts in a popup using Vega, one on top of the other. The two methods below are not working:
# Adding both charts to add_child: This only renders the first chart
m.add_child( folium.CircleMarker(
location = [df['latitude'], df['longitude']],
popup = folium.Popup(max_width = 450).add_child(chart1, chart2)
))
# Method-chaining: This only renders the second chart
m.add_child( folium.CircleMarker(
location = [df['latitude'], df['longitude']],
popup = folium.Popup(max_width = 450).add_child(chart1, name = 'c1').add_child(chart2, name = 'c2')
) )
Is there a way to accomplish this?
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先从 issue 中的两个示例入手,跟踪 Popup.add_child,并检查 popup 子项是如何渲染的。当单个 popup 能够可靠地同时显示两个 Vincent/Vega 图表,而不只是第一个或第二个图表时,这项工作就完成了。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- javascript, python
- 领域
- data-visualization, frontend
- Issue 类型
- 功能
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 需要澄清
- 新手友好度
- 35/100