Download the PHP package webcito/jquery-heatmap without Composer

On this page you can find all versions of the php package webcito/jquery-heatmap. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package jquery-heatmap

jQuery Heatmap Plugin

This jQuery plugin generates a visually appealing and interactive heatmap visualization. It maps data intensity to color variations, providing an intuitive overview of your dataset.


Features


What's New in Version 1.0.3

  1. Default Date Values:

    • Removed outdated options startDate and endDate. Date handling is now fully dynamic based on the provided data.
  2. Query Parameters (queryParams):

    • A new function allows users to add query parameters dynamically as part of the query string.
  3. Week Calculation:

    • Weeks are now calculated dynamically without the need for startDate or endDate configuration.
  4. Enhanced Color Mapping:

    • Define color gradients for different data intensity levels with flexible customization.
  5. Debugging Option:

    • A new debug option allows you to log settings and queries to the browser console.
  6. Automatic First Day of the Week:
    • The plugin determines the first day of the week automatically based on the provided locale.

Requirements

  1. Include jQuery and the Heatmap Plugin:

  2. Create a Container Element:

  3. Initialize the Plugin:

Options

Option Description Default Value
data Array of data points or a URL from which data will be fetched. null
queryParams Function for adding query parameters dynamically (e.g., { locale: 'en-US' }). () => {}
cellSize The size of each heatmap cell in pixels. 14px
colors An object defining the heatmap's color gradient. Keys are thresholds between 0 and 1. Values are colors. See gradient below
locale Locale for displaying dates and determining the first day of the week. en-US
debug If true, settings and queries are logged to the console. false
titleFormatter A function to format the tooltip content, receiving locale, date, and count as arguments. (locale, date, count) => date.toLocaleDateString(locale) + " - " + count

Methods

Initialize:

Update Settings:


Events

This plugin supports specific events, allowing developers to respond to various states and actions.


Example

Simple Data Initialization:

Query Parameters Example:

Include additional query parameters dynamically using the queryParams function:


Debugging

Enable debugging to log data and settings in the browser console. This can be useful for development and error diagnosis:


Heatmap Color Customization

The colors option in the heatmap plugin defines the color intensity mapping for the heatmap cells. The colors represent different intensity levels based on the data provided. Each key in the colors object is a threshold between 0 and 1, and the corresponding value is the color that will be applied.


Default Color Mapping

By default, the plugin provides the following color mapping:


How Colors Work

Each value (count) in your data is converted to a relative intensity based on the range of the data (minimum to maximum counts). The plugin calculates the position of the data point and determines the corresponding color from the colors map.

The calculation respects the following principles:


Example: Custom Color Mapping

You can provide your own custom mapping of thresholds to colors based on the specific requirements of your heatmap visualization. Here's an example:

In this example:


Gradient Tipps


Example: Smooth Gradient

For a smoother gradient with multiple intermediate values:

The more intermediate values you define, the smoother the gradient will appear.

By customizing the colors option, you can tailor the heatmap's appearance to fit your project's visual requirements more effectively.


Contributing

Contributions are welcome! Feel free to report bugs, request features, or submit pull requests.


License

This plugin is available under the MIT Licence.


All versions of jquery-heatmap with dependencies

PHP Build Version
Package Version
Requires components/jquery Version ^3
moment/moment Version ^2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package webcito/jquery-heatmap contains the following files

Loading the files please wait ....