21 lines
548 B
HTML
21 lines
548 B
HTML
{{ partial "chart.html" }}
|
|
<section class = 'chart-container'>
|
|
<div class = "chart" id='{{ .Get "id" }}'>
|
|
<script>
|
|
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
{{ .Get "chartMethod" | safeJS }}(
|
|
id={{ .Get "id" }},
|
|
endpoint={{ .Get "endpoint" }},
|
|
chartType={{ .Get "chartType" }},
|
|
xAxisField={{ .Get "xAxisField" }},
|
|
yAxisField={{ .Get "yAxisField" }},
|
|
sortField={{ .Get "sortField" }},
|
|
scaleChart={{ .Get "scaleChart" }},
|
|
xAxisType={{ .Get "xAxisType" }})
|
|
});
|
|
|
|
</script>
|
|
</div>
|
|
</section>
|