<div class="ddv__root">
<div class="dds__container">
<div class="dds__row">
<div class="dds__col-12 dds__col--md-12 dds__col--lg-12 dds__mb-3">
<div class="dds__card">
<div class="dds__card__content">
<div class="dds__card__header">
<span class="dds__card__header__text">
<h5 class="dds__card__header__title" tabindex="0">Line chart</h5>
<span class="dds__card__header__subtitle" tabindex="0">Optional subtitle</span>
</span>
</div>
<div class="dds__card__body">
<div id="line_2544205761" data-ddv="line"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
DDV.Line({
target: "#line_2544205761",
xField: "year",
xAxis: { title: "Year" },
yAxis: { title: "Amount" },
data: [
{ year: "1850", Latitude: 43, Vostro: 75, "G Series": 29, XPS: 80 },
{ year: "1887", Latitude: 44, Vostro: 49, "G Series": 6, XPS: 82 },
{ year: "1907", Latitude: 68, Vostro: 93, "G Series": 36, XPS: 86 },
{ year: "1923", Latitude: 87, Vostro: 37, "G Series": 13, XPS: 12 },
{ year: "1944", Latitude: 97, Vostro: 74, "G Series": 81, XPS: 92 },
{ year: "1985", Latitude: 36, Vostro: 72, "G Series": 96, XPS: 49 },
{ year: "2009", Latitude: 93, Vostro: 22, "G Series": 97, XPS: 32 },
],
series: [
{ name: "Latitude", field: "Latitude" },
{ name: "Vostro", field: "Vostro" },
{ name: "G Series", field: "G Series" },
{ name: "XPS", field: "XPS" },
],
translations: {},
legend: { position: "right" },
tooltip: { content: "values", marker: true },
});
</script>