This is a purely decorative chart demonstrating Highcharts built-in smart defaults. The chart was created with only 7 lines of code, showcasing how Highcharts can deliver powerful visualizations with minimal configuration.
This is a container displaying the code used to create the chart above.
Highcharts.chart('container', {
series: [{
data: [1, 3, 2, 4]
}, {
data: [4, 1, 2, 3]
}]
});