mirror of
https://github.com/pyecharts/pyecharts.git
synced 2026-01-25 17:06:27 +00:00
13 lines
269 B
Python
13 lines
269 B
Python
#!/usr/bin/env python
|
|
# coding=utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
from pyecharts import Style
|
|
|
|
|
|
def test_style():
|
|
style = Style()
|
|
s1 = style.add(is_random=True, label_pos="top")
|
|
assert s1['is_random'] is True
|
|
assert s1['label_pos'] == "top"
|