Free Echarts
1) Visit
2) Play
3) Copy
# https://echarts.apache.org/examples/en/editor.html?c=line-style
raw_options: str = """
{
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [
{
data: [120, 200, 150, 80, 70, 110, 130],
type: 'line',
symbol: 'triangle',
symbolSize: 20,
lineStyle: {
color: '#5470C6',
width: 4,
type: 'dashed'
},
itemStyle: {
borderWidth: 3,
borderColor: '#EE6666',
color: 'yellow'
}
}
]
};
"""
s.plt.free_echarts(
raw_options=raw_options,
menu_path='test/raw-free-echarts',
order=2, rows_size=2, cols_size=12,
)4) É Voila!


Last updated
Was this helpful?