2020-02-27 13:14:40 +01:00
|
|
|
{{- $content := .Inner | transform.Unmarshal | jsonify -}}
|
2020-05-01 17:29:24 +02:00
|
|
|
{{- $id := dict "content" $content "scratch" .Page.Scratch | partial "function/id.html" -}}
|
2020-03-21 13:52:12 +01:00
|
|
|
{{- $width := cond .IsNamedParams (.Get "width") (.Get 0) | default "100%" -}}
|
|
|
|
{{- $height := cond .IsNamedParams (.Get "height") (.Get 1) | default "30rem" -}}
|
|
|
|
<div class="echarts" id="{{ $id }}" style="width: {{ $width }}; height: {{ $height }};"></div>
|
2020-04-28 20:34:28 +02:00
|
|
|
{{- .Page.Scratch.SetInMap "this" "echarts" true -}}
|