PHP code example of webcito / jquery-heatmap

1. Go to this page and download the library: Download webcito/jquery-heatmap library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

webcito / jquery-heatmap example snippets

javascript
$('#heatmap-container').heatmap({
    data: [
        {date: '2024-01-01', count: 5},
        {date: '2024-01-02', count: 10},
        // Dynamic date handling relies on this data array
    ],

    startDate: '2024-01-01',
    endDate: '2024-12-31',
    colors: {
        0: '#ebedf0',
        0.25: '#c6e48b',
        0.5: '#7bc96f',
        0.75: '#239a3b',
        1: '#196127'
    },
});
javascript
$('#heatmap-container').heatmap({
    startDate: '2024-01-01',
    endDate: '2024-12-31',
});