JSFiddle - React, Tailwind, and code Playground
by supertrue
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
$('#container').highcharts({
xAxis: {
// min: -0.5,
// max: 5.5
},
yAxis: {
// min: 0
},
title: {
text: 'Scatter plot with regression line'
},
series: [{
type: 'line',
name: 'Regression Line',
data: [[0, 1.11], [5, 4.51]],
marker: {
enabled: false
},
states: {
hover: {
lineWidth: 0
}
},
enableMouseTracking: false
}, {
type: 'scatter',
name: 'Observations',
// data: [1, 1.5, [1.5, 5.8], 3.5, 3.9, 4.2],
data: [
{ x: 3.5, y: 3.8 },
{ x: -2.5, y: 1.8, color: "red", radius: 10, name: "Capricorn!!!",
dataLabels: {
enabled: true,
align: 'left',
style: {fontWeight: 'bold'},
x: 3,
verticalAlign: 'middle',
overflow: true,
crop: false
}
},
{ x: 1.5, y: 5.8 }
],
marker: {
radius: 4
}
}]
});
});