Screen Templating (Graphics)
Go deeper with custom screen styling, data visualization, and more.
Overview
Quickstart
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/chartkick.min.js"></script><div class="screen">
<div class="layout">
<div id="container">
</div>
</div>
<script>
Highcharts.chart("container", {
title: {
text: "Chart demo"
},
credits: { enabled: false },
xAxis: {
tickInterval: 1,
type: "logarithmic"
},
yAxis: {
type: "logarithmic",
minorTickInterval: 0.1,
},
tooltip: {
headerFormat: "<b>{series.name}</b><br />",
pointFormat: "x = {point.x}, y = {point.y}"
},
series: [{
data: [1, 2, 4, 8, 16, 32, 64, 128, 256, 512],
pointStart: 1
}]
});
</script>

More Charts and Graphs
Last updated