PyG2Plot icon indicating copy to clipboard operation
PyG2Plot copied to clipboard

我搞错了,忽略……

Open ciwind opened this issue 3 years ago • 0 comments

代码如下:

from pyg2plot import Plot, JS

line = Plot("Line")

line.set_options({ "height": 400, # set a default height in jupyter preview "data": [ { "year": "1991", "value": 3 }, { "year": "1992", "value": 4 }, { "year": "1993", "value": 3.5 }, { "year": "1994", "value": 5 }, { "year": "1995", "value": 4.9 }, { "year": "1996", "value": 6 }, { "year": "1997", "value": 7 }, { "year": "1998", "value": 9 }, { "year": "1999", "value": 13 }, ], "xField": "year", "yField": "value", "lineStye": JS('''function() { return { stroke: 'red' }; }''') })

1. 渲染到 notebook

line.render_notebook()

ciwind avatar Sep 04 '22 08:09 ciwind