Browse Source

Merge f1e6df6191 into 7adc904b08

pull/389/merge
Adam Mellen 2 years ago
committed by GitHub
parent
commit
b67098fe17
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions
  1. +1
    -1
      docs/assets/js/frappe-charts.min.js
  2. +1
    -1
      docs/assets/js/frappe-charts.min.js.map
  3. +1
    -0
      docs/index.html
  4. +1
    -1
      src/js/charts/BaseChart.js

+ 1
- 1
docs/assets/js/frappe-charts.min.js
File diff suppressed because it is too large
View File


+ 1
- 1
docs/assets/js/frappe-charts.min.js.map
File diff suppressed because it is too large
View File


+ 1
- 0
docs/index.html View File

@@ -212,6 +212,7 @@ redirect_to: "https://frappe.io/charts"
}

// Axis charts
showLegend: 0, // default: 1
isNavigable: 1, // default: 0
valuesOverPoints: 1, // default: 0
barOptions: {


+ 1
- 1
src/js/charts/BaseChart.js View File

@@ -33,7 +33,7 @@ export default class BaseChart {

this.config = {
showTooltip: 1, // calculate
showLegend: 1, // calculate
showLegend: options.showLegend || 1,
isNavigable: options.isNavigable || 0,
animate: (typeof options.animate !== 'undefined') ? options.animate : 1,
truncateLegends: options.truncateLegends || 1


Loading…
Cancel
Save