{{import_widget("data_table")}} {{import_widget("plotly")}} {{import_widget("vega_lite")}}

{{caption}}

DataTables

{{ data_table({ columns: [ {data: "firstName", title: "First Name"}, {data: "lastName", title: "Last Name"}, {data: "email", title: "E-Mail"} ], data: persons }) }}

Plotly

{{ plotly({ traces: [{ x: array(persons).extract("age"), y: array(persons).extract("salary"), mode: "markers", type: "scatter" }], layout: { plot_bgcolor: "rgba(255,255,255,1)" } }) }}

Vega-Lite

{{vega_lite("plots/plot.json")}}
{{activate_widgets("")}}