JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.js"></script>
<canvas id="myChart" width="700" height="700"></canvas>

JavaScript

var data = {
    labels: ["Januarys", "Februaryezer", "March", "April", "May", "June", "July"],
    datasets: [{
        label: "First dataset",
        pointHighlightFill: "#fff",
        pointHighlightStroke: "rgba(220,220,220,1)",
        data: [65, 59, 80, 81, 56, 55, 40]
    }, {
        label: "Second dataset",
        strokeColor: "rgba(22,22,205,1)",
        pointColor: "rgba(22,22,205,1)",
        pointHighlightFill: "#fff",
        pointHighlightStroke: "rgba(151,187,205,1)",
        data: [28, 48, 40, 19, 86, 27, 90]
    }, {
        label: "Third dataset",
        fillColor: "rgba(151,187,205,0.2)",
        strokeColor: "rgba(15,187,25,1)",
        pointColor: "rgba(15,187,25,1)",
        pointStrokeColor: "#fff",
        pointHighlightFill: "#fff",
        pointHighlightStroke: "rgba(151,187,205,1)",
        data: [38, 31, 50, 65, 35, 47, 44]
    }]
};

var options = {};

var ctx = document.getElementById("myChart").getContext("2d");

var myLineChart = new Chart(ctx).Line(data, options);