Contributing

New contributions to the library are welcome, but we ask that you please follow these guidelines:

  • Before opening a PR for major additions or changes, please discuss the expected API and/or implementation by filing an issueContributing - 图1 (opens new window) or asking about it in the Chart.js SlackContributing - 图2 (opens new window) #dev channel. This will save you development time by getting feedback upfront and make review faster by giving the maintainers more context and details.
  • Consider whether your changes are useful for all users, or if creating a Chart.js plugin would be more appropriate.
  • Check that your code will pass tests and eslint code standards. npm test will run both the linter and tests for you.
  • Add unit tests and document new functionality (in the test/ and docs/ directories respectively).
  • Avoid breaking changes unless there is an upcoming major release, which are infrequent. We encourage people to write plugins for most new advanced features, and care a lot about backwards compatibility.
  • We strongly prefer new methods to be added as private whenever possible. A method can be made private either by making a top-level function outside of a class or by prefixing it with _ and adding @private JSDoc if inside a class. Public APIs take considerable time to review and become locked once implemented as we have limited ability to change them without breaking backwards compatibility. Private APIs allow the flexibility to address unforeseen cases.

Joining the project

Active committers and contributors are invited to introduce yourself and request commit access to this project. We have a very active Slack community that you can join hereContributing - 图3 (opens new window). If you think you can help, we’d love to have you!

Building and Testing

Firstly, we need to ensure development dependencies are installed. With node and npm installed, after cloning the Chart.js repo to a local directory, and navigating to that directory in the command line, we can run the following:

  1. > npm install

This will install the local development dependencies for Chart.js.

The following commands are now available from the repository root:

  1. > npm run build // build dist files in ./dist
  2. > npm run autobuild // build and watch for source changes
  3. > npm run dev // run tests and watch for source and test changes
  4. > npm run lint // perform code linting (ESLint, tsc)
  5. > npm test // perform code linting and run unit tests with coverage

npm run dev and npm test can be appended with a string that is used to match the spec filenames. For example: npm run dev plugins will start karma in watch mode for test/specs/**/*plugin*.js.

Documentation

We use VuepressContributing - 图4 (opens new window) to manage the docs which are contained as Markdown files in the docs directory. You can run the doc server locally using these commands:

  1. > npm run docs:dev

Image-Based Tests

Some display-related functionality is difficult to test via typical Jasmine units. For this reason, we introduced image-based tests (#3988Contributing - 图5 (opens new window) and #5777Contributing - 图6 (opens new window)) to assert that a chart is drawn pixel-for-pixel matching an expected image.

Generated charts in image-based tests should be as minimal as possible and focus only on the tested feature to prevent failure if another feature breaks (e.g. disable the title and legend when testing scales).

You can create a new image-based test by following the steps below:

  • Create a JS file (exampleContributing - 图7 (opens new window)) or JSON file (exampleContributing - 图8 (opens new window)) that defines chart config and generation options.
  • Add this file in test/fixtures/{spec.name}/{feature-name}.json.
  • Add a describe lineContributing - 图9 (opens new window) to the beginning of test/specs/{spec.name}.tests.js if it doesn’t exist yet.
  • Run npm run dev.
  • Click the “Debug” button (top/right): a test should fail with the associated canvas visible.
  • Right click on the chart and “Save image as…” test/fixtures/{spec.name}/{feature-name}.png making sure not to activate the tooltip or any hover functionality
  • Refresh the browser page (CTRL+R): test should now pass
  • Verify test relevancy by changing the feature values slightly in the JSON file.

Tests should pass in both browsers. In general, we’ve hidden all text in image tests since it’s quite difficult to get them passing between different browsers. As a result, it is recommended to hide all scales in image-based tests. It is also recommended to disable animations. If tests still do not pass, adjust tolerance and/or thresholdContributing - 图10 (opens new window) at the beginning of the JSON file keeping them as low as possible.

When a test fails, the expected and actual images are shown. If you’d like to see the images even when the tests pass, set "debug": true in the JSON file.

Bugs and Issues

Please report these on the GitHub page - at github.com/chartjs/Chart.js. Please do not use issues for support requests. For help using Chart.js, please take a look at the chartjsContributing - 图11 (opens new window) tag on Stack Overflow.

Well structured, detailed bug reports are hugely valuable for the project.

Guidelines for reporting bugs:

Please provide any additional details associated with the bug, if it’s browser or screen density specific, or only happens with a certain configuration or data.