HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/quadcode/frontend/src/js/components/schedules/Schedules.js
import Highcharts from 'highcharts';
import Highcharts_more from 'highcharts/highcharts-more';
Highcharts_more(Highcharts);
export const Schedules = () => {
  new Highcharts.chart('first-schedule', {
    chart: {
      type: 'column',
    },
    title: {
      text: 'MAU (Monthly Active Users)',
    },
    yAxis: [{
      title: {
        text: ''
      },
      type: 'linear',
      crosshair: true
    }],
    xAxis: [{
      categories: [2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022],
      crosshair: true
    }],
    series: [{
      name: 'Active users',
      data: [647, 14636, 79025, 109993, 162449, 171776, 216910, 534747, 573258, 408822],
      color: '#A7B6C8',
      borderWidth: 0,
    }]
  });

  new Highcharts.chart('two-schedule', {
    chart: {
      type: 'column',
    },
    title: {
      text: 'DAU (Daily Active Users)',
    },
    yAxis: [{
      title: {
        text: ''
      },
      type: 'linear',
      crosshair: true
    }],
    xAxis: [{
      categories: [2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022],
      crosshair: true
    }],
    series: [{
      name: 'Active users',
      data: [197, 1917, 10872, 18991, 33234, 39011, 46072, 159227, 157684, 88906],
      color: '#A7B6C8',
      borderWidth: 0,
    }]
  });

  new Highcharts.chart('three-schedule', {
    chart: {
      type: 'waterfall',
    },
    title: {
      text: 'Number of installs (Android + iOS)',
    },
    yAxis: [{
      title: {
        text: ''
      },
      type: 'linear',
      crosshair: true
    }],
    xAxis: [{
      categories: [2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 'Total'],
      crosshair: true
    }],
    series: [{
      name: 'install',
      data: [{
        y: 152797,
      }, {
        y: 6387744,
      }, {
        y: 33722140,
      }, {
        y: 47558052,
      }, {
        y: 30854205,
      }, {
        y: 40726440,
      }, {
        y: 61708204,
      }, {
        y: 37818181,
      }, {
        isSum: true,
      }],
      color: '#A7B6C8',
      borderWidth: 0,
    }]
  });

  new Highcharts.chart('line-schedule', {
    chart: {
      type: 'spline',
    },
    title: {
      text: 'Number of clients registrations',
    },
    yAxis: [{
      title: {
        text: ''
      },
      type: 'linear',
      crosshair: true
    }],
    xAxis: [{
      categories: [2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022],
      crosshair: true
    }],
    series: [{
      name: 'Registration',
      data: [14813, 965649, 7599117, 14514307, 27486103, 41883228, 55144281, 88179881, 115961718, 142775267],
      color: '#566E8A',
    }]
  });
}