我使用 Pygal 库在 Python 中创建了一个散点图。现在,我想更改当您将鼠标悬停在框上时显示的框内的信息(我认为它称为 dynamic_print_values ???)。我希望能够在其中写一个解释。
问问题
132 次
1 回答
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')
在值/系列列表中,将您的值替换为字典项,该字典项根据上面的示例指定“值”和“标签”。
于 2018-07-20T12:27:35.177 回答