HEX
Server: Apache
System: Linux srv4.garantili.com.tr 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: ekspardev (1006)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/ekspardev/public_html/tubisad/rapor/src/pages/_includes/ui/chart-sparkline.html
{% assign type = include.type | default: 'bar' %}
{% assign id = include.id %}
{% assign color = include.color | default: 'blue' %}
{% assign height = include.height | default: 2.5 %}
{% if include.small %}
	{% assign height = include.height | default: 1.5 %}
{% endif %}

{% assign data = include.data %}
{% if include.percentage %}
	{% assign data = include.percentage %}
{% endif %}

{% if id %}
	<div class="chart-sparkline{% if type == 'pie' or type == 'donut' %} chart-sparkline-square{% endif %}{% if include.wide %} chart-sparkline-wide{% endif %}{% if include.small %} chart-sparkline-sm{% endif %}" id="sparkline-{{ id }}"></div>

	{% capture_global scripts %}
	<script>
		// @formatter:off
		document.addEventListener("DOMContentLoaded", function () {
			{% if jekyll.environment == 'development' %}
			window.tabler_chart = window.tabler_chart || {};
			{% endif %}

			window.ApexCharts && ({% if jekyll.environment == 'development' %}window.tabler_chart["sparkline-{{ id }}"] = {% endif %}new ApexCharts(document.getElementById('sparkline-{{ id }}'), {
				chart: {
					type: "{% if type == 'donut' %}radialBar{% else %}{{ type }}{% endif %}",
					fontFamily: 'inherit',
					height: {{ height | times: 16 | round }},
					{% if type == 'pie' or type == 'donut' %}
					width: {{ height | times: 16 | round }},
					{% endif %}
					animations: {
						enabled: false
					},
					sparkline: {
						enabled: true
					},
				},
				tooltip: {
					enabled: false,
				},
				{% if type == 'donut' %}
				plotOptions: {
					radialBar: {
						hollow: {
							margin: 0,
							size: '75%'
						},
						track: {
							margin: 0
						},
						dataLabels: {
							show: false
						}
					}
				},
				{% endif %}
				{% if type == 'area' %}
				fill: {
					gradient: {
						opacityFrom: [.1, .1]
					}
				},
				{% endif %}
				{% if type == 'area' or type == 'line' %}
				stroke: {
					width: 2,
					lineCap: "round",
				},
				{% endif %}

				{% if type == 'donut' %}
				colors: [tabler.getColor("{{ color | default: 'primary' }}")],
				series: [{{ data }}],
				{% else %}
				series: [{
					color: tabler.getColor("{{ color | default: 'primary' }}"),
					data: [{{ data }}]
				}],
				{% endif %}
			})).render();
		});
		// @formatter:on
	</script>
	{% endcapture_global %}
{% endif %}