mirror of
https://github.com/pyecharts/pyecharts.git
synced 2026-01-25 17:06:27 +00:00
10 lines
282 B
Python
10 lines
282 B
Python
from example.commons import Faker
|
|
from pyecharts.charts import EffectScatter
|
|
|
|
|
|
def test_effectscatter_base():
|
|
c = EffectScatter().add_xaxis(Faker.choose()).add_yaxis("", Faker.values())
|
|
assert c.theme == "white"
|
|
assert c.renderer == "canvas"
|
|
c.render("render.html")
|