A line chart is a type of chart which displays information as a series of data points called 'markers' connected by straight line segments. It is a basic type of chart common in many fields.
{%- call ui.util.call(show_example) -%} {%- raw %} {{ ui.chart(type="line", data=[[1,2,3], [2, 4, 9], [3, 8, 27]], labels=["1", "2", "3"]) }} {%- endraw %} {%- endcall %}