Skip to content

Plugin for Chart.js to display percentage, value or label in Pie or Doughnut.

License

Notifications You must be signed in to change notification settings

shripalsoni04/Chart.PieceLabel.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chart.PieceLabel.js

PieceLabel plugin for Chart.js.

Demo

Demo

Download

Compress
Uncompress

Installation

You can also install Chart.PieceLabel.js by using Bower.

bower install Chart.PieceLabel.js

Or node.js, you can use this command to install:

npm install chart.piecelabel.js

Usage

JavaScript

new Chart(ctx, {
  type: type,
  data: data,
  options: {
    pieceLabel: {
      // mode 'label', 'value' or 'percentage', default is 'percentage'
      mode: 'value',

      // precision for percentage, default is 0
      precision: 0,

      // font size, default is defaultFontSize
      fontSize: 12,

      // font color, default is '#fff'
      fontColor: '#fff',

      // font style, default is defaultFontStyle
      fontStyle: 'normal',

      // font family, default is defaultFontFamily
      fontFamily: "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",

      // draw text in arc, default is false
      arcText: true,

      // format text, work when mode is 'value'
      format: function (value) { 
        return '$' + value;
      }
    }
  }
});

License

The project is released under the MIT license.

Contact

The project's website is located at https://github.com/emn178/Chart.PieceLabel.js
Author: Chen, Yi-Cyuan ([email protected])

About

Plugin for Chart.js to display percentage, value or label in Pie or Doughnut.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%