我使用Pygal库在Python中创建了一个散点图。现在,我想改变当你将鼠标悬停在它们上方时显示的框内信息(我认为它叫做dynamic_print_values ???)。我希望能够在其中写下解释。
答案 0 :(得分:1)
不确定您是否已解决此问题,请尝试一下。
chart = pygal.XY()
chart.add('First', [{'value': (2,0.1), 'label': 'This is the first'},
{'value': (2.6,0.4), 'label': 'This is the second'},
{'value': (3.6,0.8), 'label': 'This is the third'}])
chart.render_to_file('testpy.svg')
在值/系列列表中,将您的值替换为字典项,按照上面的示例指定“值”和“标签”。