Memory Usage

32.3%
8,6,5,9,8,4,9,3,5,9

CPU Usage

140.05
4,3,5,7,12,10,4,5,11,7

Disk Usage

82.02%
1,2,1,3,2,10,4,12,7

Daily Traffic

62,201
3,12,7,9,2,3,4,5,2

No attachments yet.

No events scheduled today.

Chart JS

Simple, clean and engaging HTML5 based JavaScript charts. An easy way to include animated, interactive graphs on your website.

Below is the basic bar chart example.

var ctx = document.getElementById('chartBar1').getContext('2d');
new Chart(ctx, {
  type: 'bar',
  data: {
    labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
    datasets: [{
      label: '# of Votes',
      data: [12, 39, 20, 10, 25, 18],
      backgroundColor: '#27AAC8'
    }]
  },
  options: {
    legend: {
      display: false,
        labels: {
          display: false
        }
    },
    scales: {
      yAxes: [{
        ticks: {
          beginAtZero:true,
          fontSize: 10,
          max: 80
        }
      }],
      xAxes: [{
        ticks: {
          beginAtZero:true,
          fontSize: 11
        }
      }]
    }
  }
});
backgroundColor: [
  '#29B0D0',
  '#2A516E',
  '#F07124',
  '#CBE0E3',
  '#979193'
]

Below is the horizontal bar chart type example.

type: 'horizontalBar'

Below are the vertical and horizontal bar chart example.

scales: {
  yAxes: [{
    stacked: true
  }],
  xAxes: [{
    stacked: true
  }]
}

Below is the basic line chart example.

type: 'line'

Below is the basic an area chart example.

datasets: [{
  data: [12, 39, 20, 10, 25, 18],
  fill: true,
}]

Below are an example of specific grid line coloring.

options: {
  scales: {
    yAxes: [{
      gridLines: {
        color: ['', '', '#cc0000'] // the line color series
      }
    }]
  }
}

Below are an example of data in a pie and donut chart.

var pie = document.getElementById('chartDonut');
var myPieChart = new Chart(pie, {
  type: 'pie',
  data: data,
  options: option
});
var pie = document.getElementById('chartDonut');
var myPieChart = new Chart(pie, {
  type: 'doughnut',
  data: data,
  options: option
});