├── helpers ├── helpers.js ├── helpers.d.ts └── helpers.cjs ├── .eslintignore ├── docs ├── samples │ └── .eslintrc.yml ├── .vuepress │ ├── public │ │ ├── logo.png │ │ └── favicon.ico │ └── redirects ├── developers │ ├── init_flowchart.png │ ├── event_flowchart.png │ ├── render_flowchart.png │ ├── scale_flowchart.png │ ├── update_flowchart.png │ └── destroy_flowchart.png ├── getting-started │ ├── preview.png │ ├── usage-1.png │ ├── usage-2.png │ ├── usage-3.png │ ├── usage-4.png │ ├── usage-5.png │ ├── usage-6.png │ ├── usage-7.png │ └── usage-8.png ├── general │ └── colors-plugin-palette.png └── scripts │ ├── components.js │ ├── helpers.js │ └── register.js ├── pnpm-workspace.yaml ├── src ├── types │ ├── color.d.ts │ └── basic.d.ts ├── elements │ └── index.js ├── core │ └── core.layouts.defaults.js ├── scales │ └── index.js └── plugins │ └── index.js ├── .browserslistrc ├── test ├── fixtures │ ├── mixed │ │ ├── bar+line.png │ │ └── bar+line-stacked.png │ ├── plugin.colors │ │ ├── bar.png │ │ ├── line.png │ │ ├── pie.png │ │ ├── bubble.png │ │ ├── mixed.png │ │ ├── radar.png │ │ ├── scatter.png │ │ ├── doughnut.png │ │ ├── polarArea.png │ │ ├── chart-options-colors.png │ │ ├── dynamic-datasets-default.png │ │ └── dynamic-datasets-force-override.png │ ├── scale.time │ │ ├── data-ty.png │ │ ├── data-xy.png │ │ ├── labels.png │ │ ├── ticks-unit.png │ │ ├── invalid-data.png │ │ ├── labels-date.png │ │ ├── ticks-round.png │ │ ├── autoskip-major.png │ │ ├── custom-parser.png │ │ ├── labels-strings.png │ │ ├── negative-times.png │ │ ├── ticks-capacity.png │ │ ├── ticks-minunit.png │ │ ├── ticks-reverse.png │ │ ├── ticks-stepsize.png │ │ ├── offset-with-1-tick.png │ │ ├── offset-with-2-ticks.png │ │ ├── offset-with-no-ticks.png │ │ ├── skip-null-gridlines.png │ │ ├── source-auto-linear.png │ │ ├── source-data-linear.png │ │ ├── source-labels-linear.png │ │ ├── ticks-reverse-linear.png │ │ ├── ticks-reverse-offset.png │ │ ├── offset-auto-skip-ticks.png │ │ ├── skip-undefined-gridlines.png │ │ ├── bar-large-gap-between-data.png │ │ ├── ticks-reverse-linear-min-max.png │ │ └── source-labels-linear-offset-min-max.png │ ├── element.line │ │ ├── default.png │ │ ├── skip │ │ │ ├── all.png │ │ │ ├── first.png │ │ │ ├── last.png │ │ │ ├── middle.png │ │ │ ├── first-span.png │ │ │ ├── last-span.png │ │ │ └── middle-span.png │ │ ├── stepped │ │ │ ├── after.png │ │ │ ├── before.png │ │ │ ├── default.png │ │ │ └── middle.png │ │ ├── tension │ │ │ ├── one.png │ │ │ ├── zero.png │ │ │ └── default.png │ │ └── cubicInterpolationMode │ │ │ ├── monotone-vertical.png │ │ │ └── monotone-horizontal.png │ ├── plugin.subtitle │ │ └── basic.png │ ├── controller.bubble │ │ ├── clip.png │ │ ├── padding.png │ │ ├── point-style.png │ │ ├── radius-data.png │ │ ├── padding-update.png │ │ ├── hover-radius-zero.png │ │ ├── radius-scriptable.png │ │ └── autoPadding-disabled.png │ ├── core.layouts │ │ ├── scriptable.png │ │ ├── long-labels.png │ │ ├── stacked-boxes.png │ │ ├── stacked-boxes-max.png │ │ ├── no-boxes-all-padding.png │ │ ├── refit-vertical-boxes.png │ │ ├── hidden-vertical-boxes.png │ │ ├── stacked-boxes-max-index.png │ │ └── stacked-boxes-with-weight.png │ ├── core.scale │ │ ├── grid │ │ │ ├── colors.png │ │ │ ├── border-over-grid.png │ │ │ └── scriptable-borderDash.png │ │ ├── tick-drawing.png │ │ ├── ticks-mirror.png │ │ ├── autoSkip │ │ │ ├── offset.png │ │ │ ├── fit-after.png │ │ │ └── no-offset.png │ │ ├── backgroundColor.png │ │ ├── label-align-end.png │ │ ├── tick-backdrop.png │ │ ├── ticks-mirror-x.png │ │ ├── title │ │ │ ├── align-end.png │ │ │ ├── default.png │ │ │ ├── align-start.png │ │ │ ├── vertical-value.png │ │ │ ├── horizontal-value.png │ │ │ ├── vertical-center.png │ │ │ ├── horizontal-center.png │ │ │ └── multi-line │ │ │ │ ├── default.png │ │ │ │ ├── align-end.png │ │ │ │ └── align-start.png │ │ ├── label-align-inner.png │ │ ├── label-align-start.png │ │ ├── label-align-center.png │ │ ├── tick-override-styles.png │ │ ├── ticks │ │ │ ├── rotated-long.png │ │ │ ├── skip-by-callback.png │ │ │ └── rotated-multi-line.png │ │ ├── border-behind-elements.png │ │ ├── tick-backdrop-rotation.png │ │ ├── x-axis-position-center.png │ │ ├── y-axis-position-center.png │ │ ├── label-align-inner-onlyX.png │ │ ├── label-align-inner-reverse.png │ │ ├── label-align-inner-rotate.png │ │ ├── x-axis-position-dynamic.png │ │ ├── y-axis-position-dynamic.png │ │ ├── label-offset-vertical-axes.png │ │ ├── cartesian-axis-border-settings.png │ │ ├── x-axis-position-dynamic-margin.png │ │ └── crossAlignment │ │ │ ├── cross-align-left-far.png │ │ │ ├── cross-align-top-far.png │ │ │ ├── cross-align-top-near.png │ │ │ ├── cross-align-bottom-far.png │ │ │ ├── cross-align-left-near.png │ │ │ ├── cross-align-right-far.png │ │ │ ├── cross-align-right-near.png │ │ │ ├── cross-align-top-center.png │ │ │ ├── cross-align-bottom-center.png │ │ │ ├── cross-align-bottom-near.png │ │ │ ├── cross-align-left-center.png │ │ │ ├── cross-align-right-center.png │ │ │ ├── mirror-cross-align-left-far.png │ │ │ ├── cross-align-left-far-clipped.png │ │ │ ├── cross-align-right-far-clipped.png │ │ │ ├── mirror-cross-align-left-center.png │ │ │ ├── mirror-cross-align-left-near.png │ │ │ ├── mirror-cross-align-right-far.png │ │ │ ├── mirror-cross-align-right-near.png │ │ │ └── mirror-cross-align-right-center.png │ ├── element.point │ │ ├── rotation.png │ │ ├── point-style-cross.png │ │ ├── point-style-dash.png │ │ ├── point-style-image.png │ │ ├── point-style-line.png │ │ ├── point-style-rect.png │ │ ├── point-style-star.png │ │ ├── point-style-circle.png │ │ ├── point-style-cross-rot.png │ │ ├── point-style-rect-rot.png │ │ ├── point-style-triangle.png │ │ └── point-style-rect-rounded.png │ ├── plugin.tooltip │ │ ├── opacity.png │ │ ├── box-padding.png │ │ ├── point-style.png │ │ ├── positioning.png │ │ ├── corner-radius.png │ │ ├── caret-position.png │ │ ├── color-box-border-dash.png │ │ └── color-box-border-radius.png │ ├── scale.linear │ │ ├── issue-8806.png │ │ ├── rotated-45.png │ │ ├── rotated-5.png │ │ ├── rotated-85.png │ │ ├── grace │ │ │ ├── grace.png │ │ │ ├── grace-10%.png │ │ │ ├── grace-neg.png │ │ │ ├── grace-pos.png │ │ │ ├── issue-8912.png │ │ │ └── grace-beginAtZero.png │ │ ├── tiny-numbers.png │ │ ├── tick-count-min-max.png │ │ ├── tick-step-min-max.png │ │ ├── tick-count-data-limits.png │ │ ├── min-max-skip │ │ │ ├── edge-case-1.png │ │ │ ├── edge-case-2.png │ │ │ ├── edge-case-3.png │ │ │ ├── edge-case-4.png │ │ │ ├── min-max-skip.png │ │ │ ├── no-collision.png │ │ │ ├── includeBounds.png │ │ │ ├── rotated-case-1.png │ │ │ ├── rotated-case-2.png │ │ │ ├── rotated-case-3.png │ │ │ └── rotated-case-4.png │ │ ├── tick-step-min-max-step-fp.png │ │ ├── tick-count-min-max-not-int.png │ │ └── tick-count-min-max-not-aligned.png │ ├── controller.bar │ │ ├── data │ │ │ ├── object.png │ │ │ └── parsing.png │ │ ├── baseLine │ │ │ ├── left.png │ │ │ ├── top.png │ │ │ ├── bottom.png │ │ │ ├── mid-x.png │ │ │ ├── mid-y.png │ │ │ ├── right.png │ │ │ ├── value-x.png │ │ │ └── value-y.png │ │ ├── aligned-pixels.png │ │ ├── bar-base-value.png │ │ ├── chart-area-clip.png │ │ ├── bar-thickness-flex.png │ │ ├── bar-thickness-max.png │ │ ├── borderColor │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ ├── border+dpr.png │ │ │ └── scriptable.png │ │ ├── borderWidth │ │ │ ├── object.png │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ ├── negative.png │ │ │ ├── scriptable.png │ │ │ ├── indexable-object.png │ │ │ └── scriptable-object.png │ │ ├── floatBar │ │ │ ├── float-bar.png │ │ │ ├── data-as-objects.png │ │ │ ├── float-bar-stacked.png │ │ │ ├── float-bar-horizontal.png │ │ │ ├── data-as-objects-horizontal.png │ │ │ └── float-bar-stacked-horizontal.png │ │ ├── horizontal-borders.png │ │ ├── not-grouped │ │ │ ├── mixed.png │ │ │ └── on-time.png │ │ ├── backgroundColor │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ ├── loopable.png │ │ │ └── scriptable.png │ │ ├── bar-thickness-offset.png │ │ ├── bar-thickness-reverse.png │ │ ├── bar-thickness-single.png │ │ ├── bar-thickness-stacked.png │ │ ├── borderSkipped │ │ │ ├── middle.png │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── minBarLength │ │ │ ├── vertical.png │ │ │ ├── horizontal.png │ │ │ ├── vertical-neg.png │ │ │ ├── vertical-pos.png │ │ │ ├── horizontal-neg.png │ │ │ ├── horizontal-pos.png │ │ │ ├── horizontal-stacked.png │ │ │ ├── vertical-stacked.png │ │ │ ├── vertical-stacked-no-overlap.png │ │ │ └── horizontal-stacked-no-overlap.png │ │ ├── skipNull │ │ │ ├── combinations.png │ │ │ ├── bar-skip-null.png │ │ │ └── bar-skip-null-object-data.png │ │ ├── stacking │ │ │ ├── issue-9105.png │ │ │ ├── logarithmic.png │ │ │ ├── replace-data.png │ │ │ ├── order-default.png │ │ │ ├── remove-dataset.png │ │ │ ├── order-specified.png │ │ │ └── logarithmic-strings.png │ │ ├── bar-animation-hide-show.png │ │ ├── bar-thickness-absolute.png │ │ ├── bar-thickness-multiple.png │ │ ├── bar-thickness-single-xy.png │ │ ├── borderRadius │ │ │ ├── no-spacing.png │ │ │ ├── border-radius.png │ │ │ ├── border-radius-stacked-number.png │ │ │ ├── border-radius-stacked-number-mixed-chart.png │ │ │ └── border-radius-stacked-number-with-order.png │ │ ├── bar-default-begin-at-zero.png │ │ ├── bar-thickness-flex-offset.png │ │ ├── bar-thickness-flex-single.png │ │ ├── bar-thickness-min-interval.png │ │ ├── bar-thickness-no-overlap.png │ │ ├── bar-thickness-per-dataset.png │ │ ├── bar-thickness-flex-single-reverse.png │ │ ├── bar-thickness-min-interval-multi.png │ │ └── bar-thickness-per-dataset-stacked.png │ ├── controller.line │ │ ├── clip │ │ │ ├── false.png │ │ │ ├── default-x.png │ │ │ ├── default-y.png │ │ │ ├── specified.png │ │ │ ├── default-x-max.png │ │ │ ├── default-x-min.png │ │ │ ├── default-y-max.png │ │ │ └── default-y-min.png │ │ ├── fill │ │ │ ├── order.png │ │ │ ├── value.png │ │ │ ├── no-border.png │ │ │ ├── scriptable.png │ │ │ └── order-default.png │ │ ├── issue-8902.png │ │ ├── point-style.png │ │ ├── radius │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ ├── scriptable.png │ │ │ └── scriptable-to-value.png │ │ ├── segments │ │ │ ├── gap.png │ │ │ ├── range.png │ │ │ ├── single.png │ │ │ ├── slope.png │ │ │ └── spanGaps.png │ │ ├── non-numeric-y.png │ │ ├── rotation │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── showLine │ │ │ ├── false.png │ │ │ └── dataset.png │ │ ├── stacking │ │ │ ├── single.png │ │ │ ├── updates.png │ │ │ ├── bounds-data.png │ │ │ ├── order-default.png │ │ │ ├── order-specified.png │ │ │ └── stacked-scatter.png │ │ ├── borderColor │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── borderDash │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── borderWidth │ │ │ ├── value.png │ │ │ ├── zero.png │ │ │ └── scriptable.png │ │ ├── pointStyle │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── borderCapStyle │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── backgroundColor │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── borderDashOffset │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── borderJoinStyle │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── pointBorderColor │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── pointBorderWidth │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── pointBackgroundColor │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── cubicInterpolationMode │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ └── point-style-offscreen-canvas.png │ ├── plugin.filler │ │ ├── line │ │ │ ├── shape.png │ │ │ ├── stack.png │ │ │ ├── value.png │ │ │ ├── vertical.png │ │ │ ├── boundary │ │ │ │ ├── end.png │ │ │ │ ├── start.png │ │ │ │ ├── end-span.png │ │ │ │ ├── origin.png │ │ │ │ ├── start-span.png │ │ │ │ ├── origin-span.png │ │ │ │ ├── origin-spline.png │ │ │ │ ├── origin-stepped.png │ │ │ │ ├── origin-span-dual.png │ │ │ │ ├── origin-spline-span.png │ │ │ │ ├── origin-spline-above.png │ │ │ │ ├── origin-stepped-span.png │ │ │ │ ├── above-below-line-null.png │ │ │ │ └── above-below-line-null-start.png │ │ │ ├── dataset │ │ │ │ ├── dual.png │ │ │ │ ├── span.png │ │ │ │ ├── border.png │ │ │ │ ├── spline.png │ │ │ │ ├── no-border.png │ │ │ │ ├── span-dual.png │ │ │ │ ├── stepped.png │ │ │ │ ├── spline-span.png │ │ │ │ ├── interpolated.png │ │ │ │ ├── spline-span-above.png │ │ │ │ └── spline-span-below.png │ │ │ ├── segments │ │ │ │ ├── gap.png │ │ │ │ ├── slope.png │ │ │ │ └── alignToPixels.png │ │ │ ├── before-dataset-draw.png │ │ │ ├── before-datasets-draw.png │ │ │ ├── stack-multiple-scales.png │ │ │ ├── drawTimeFillFalse │ │ │ │ ├── beforeDraw.png │ │ │ │ ├── beforeDatasetDraw.png │ │ │ │ └── beforeDatasetsDraw.png │ │ │ ├── points-outside-canvas-initial.png │ │ │ └── points-outside-canvas-update.png │ │ └── radar │ │ │ ├── value.png │ │ │ ├── beforeDraw.png │ │ │ ├── boundary │ │ │ ├── end.png │ │ │ ├── origin.png │ │ │ ├── start.png │ │ │ ├── end-span.png │ │ │ ├── end-circular.png │ │ │ ├── origin-span.png │ │ │ ├── start-span.png │ │ │ ├── origin-spline.png │ │ │ ├── start-circular.png │ │ │ ├── origin-circular.png │ │ │ └── origin-spline-span.png │ │ │ └── dataset │ │ │ ├── order.png │ │ │ ├── span.png │ │ │ ├── border.png │ │ │ ├── default.png │ │ │ └── spline.png │ ├── scale.logarithmic │ │ ├── min-max.png │ │ ├── med-range.png │ │ ├── large-range.png │ │ ├── null-values.png │ │ ├── small-range.png │ │ └── large-values-small-range.png │ ├── scale.timeseries │ │ ├── normalize.png │ │ ├── source-auto.png │ │ ├── source-data.png │ │ ├── source-labels.png │ │ ├── ticks-reverse.png │ │ ├── financial-daily.png │ │ ├── ticks-reverse-max.png │ │ ├── ticks-reverse-min.png │ │ ├── ticks-reverse-min-max.png │ │ ├── source-data-offset-min-max.png │ │ └── source-labels-offset-min-max.png │ ├── controller.radar │ │ ├── fill │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── point-style.png │ │ ├── radius │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── rotation │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── showLine │ │ │ └── value.png │ │ ├── startAngle │ │ │ ├── 135.png │ │ │ ├── 180.png │ │ │ ├── 225.png │ │ │ ├── 270.png │ │ │ ├── 315.png │ │ │ ├── 45.png │ │ │ ├── 90.png │ │ │ └── default.png │ │ ├── borderDash │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── borderWidth │ │ │ ├── zero.png │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── pointStyle │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── borderColor │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── backgroundColor │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── borderCapStyle │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── borderJoinStyle │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── borderDashOffset │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── pointBorderColor │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── pointBorderWidth │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ └── pointBackgroundColor │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ ├── plugin.legend │ │ ├── maxWidth │ │ │ ├── value.png │ │ │ ├── infinity.png │ │ │ └── undefined.png │ │ ├── title │ │ │ ├── top-end-end.png │ │ │ ├── left-end-end.png │ │ │ ├── right-end-end.png │ │ │ ├── bottom-end-end.png │ │ │ ├── left-start-start.png │ │ │ ├── top-start-start.png │ │ │ ├── bottom-start-start.png │ │ │ ├── left-center-center.png │ │ │ ├── right-start-start.png │ │ │ ├── top-center-center.png │ │ │ ├── bottom-center-center.png │ │ │ └── right-center-center.png │ │ ├── padding │ │ │ ├── add-column.png │ │ │ └── 2cols-with-padding.png │ │ ├── horizontal-rtl-hitbox.png │ │ ├── label-textAlign │ │ │ ├── center.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ ├── rtl-left.png │ │ │ ├── rtl-center.png │ │ │ ├── rtl-right.png │ │ │ ├── horizontal-left.png │ │ │ ├── horizontal-right.png │ │ │ ├── horizontal-rtl-left.png │ │ │ └── horizontal-rtl-right.png │ │ ├── legend-line-chart-area.png │ │ ├── legend-doughnut-point-style.png │ │ ├── borderRadius │ │ │ └── legend-border-radius.png │ │ ├── legend-doughnut-left-center-single.png │ │ ├── legend-doughnut-top-center-single.png │ │ ├── legend-doughnut-top-end-mulitiline.png │ │ ├── legend-doughnut-bottom-center-single.png │ │ ├── legend-doughnut-bottom-end-mulitiline.png │ │ ├── legend-doughnut-left-default-center.png │ │ ├── legend-doughnut-left-end-mulitiline.png │ │ ├── legend-doughnut-left-start-mulitiline.png │ │ ├── legend-doughnut-right-center-single.png │ │ ├── legend-doughnut-right-default-center.png │ │ ├── legend-doughnut-right-end-mulitiline.png │ │ ├── legend-doughnut-top-center-mulitiline.png │ │ ├── legend-doughnut-top-start-mulitiline.png │ │ ├── legend-doughnut-bottom-start-mulitiline.png │ │ ├── legend-doughnut-left-center-mulitiline.png │ │ ├── legend-doughnut-right-center-mulitiline.png │ │ ├── legend-doughnut-right-start-mulitiline.png │ │ ├── legend-doughnut-bottom-center-mulitiline.png │ │ ├── pointStyle-width │ │ │ ├── legend-pointStyle-width.png │ │ │ └── legend-pointStyle-width-default.png │ │ └── legend-doughnut-right-center-mulitiline-labels.png │ ├── scale.category │ │ ├── invalid-data.png │ │ ├── ticks-from-data.png │ │ ├── max-ticks-limit-a.png │ │ ├── max-ticks-limit-b.png │ │ └── max-ticks-limit-norotation.png │ ├── controller.doughnut │ │ ├── pie-offset.png │ │ ├── pie-weight.png │ │ ├── doughnut-NaN.png │ │ ├── event-replay.png │ │ ├── borderDash │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── doughnut-hidden.png │ │ ├── doughnut-offset.png │ │ ├── doughnut-parsing.png │ │ ├── doughnut-spacing.png │ │ ├── doughnut-weight.png │ │ ├── borderAlign │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── borderColor │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── borderWidth │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── doughnut-animation.png │ │ ├── pie-circumference.png │ │ ├── backgroundColor │ │ │ ├── value.png │ │ │ ├── indexable.png │ │ │ └── scriptable.png │ │ ├── borderJoinStyle │ │ │ ├── miter.png │ │ │ ├── round.png │ │ │ └── bevel-default.png │ │ ├── doughnut-full-to-semi.png │ │ ├── doughnut-rotation-300.png │ │ ├── single-slice-offset.png │ │ ├── single-slice-opacity.png │ │ ├── borderRadius │ │ │ ├── scriptable.png │ │ │ ├── value-corners.png │ │ │ ├── value-large-radius.png │ │ │ └── value-small-number.png │ │ ├── doughnut-circumference.png │ │ ├── doughnut-hidden-single.png │ │ ├── pie-border-align-center.png │ │ ├── pie-border-align-inner.png │ │ ├── doughnut-animation-hide-last.png │ │ ├── doughnut-border-align-center.png │ │ ├── doughnut-border-align-inner.png │ │ ├── doughnut-outer-radius-pixels.png │ │ ├── doughnut-set-active-elements.png │ │ ├── doughnut-spacing-and-offset.png │ │ ├── doughnut-circumference-over-2pi.png │ │ ├── doughnut-outer-radius-percent.png │ │ ├── doughnut-rotation-per-dataset.png │ │ ├── single-slice-circumference-405.png │ │ ├── doughnut-circumference-per-dataset.png │ │ ├── doughnut-rotation-circumference-8x8.png │ │ ├── single-slice-offset.js │ │ ├── pie-offset.js │ │ └── doughnut-offset.js │ ├── plugin.title │ │ └── scriptable-options.png │ ├── scale.radialLinear │ │ ├── border-dash.png │ │ ├── gridlines-z.png │ │ ├── gridlines-no-z.png │ │ ├── backgroundColor.png │ │ ├── gridlines-disable.png │ │ ├── anglelines-disable.png │ │ ├── indexable-gridlines.png │ │ ├── pointLabels │ │ │ ├── padding.png │ │ │ ├── background.png │ │ │ ├── border-radius.png │ │ │ ├── scriptable-color-small.png │ │ │ └── no-more-than-half-radius.png │ │ ├── anglelines-indexable.png │ │ ├── anglelines-scriptable.png │ │ ├── circular-border-dash.png │ │ ├── gridlines-scriptable.png │ │ └── circular-backgroundColor.png │ ├── controller.polarArea │ │ ├── angle-array.png │ │ ├── angle-lines.png │ │ ├── angle-undefined.png │ │ ├── borderDash │ │ │ ├── value.png │ │ │ └── scriptable.png │ │ ├── parse-object-data.png │ │ ├── border-align-center.png │ │ ├── border-align-inner.png │ │ ├── last-slice-animate.png │ │ ├── pointLabels │ │ │ ├── centered.png │ │ │ ├── default.png │ │ │ ├── default-45.png │ │ │ ├── centered-180.png │ │ │ ├── centered-45.png │ │ │ ├── default-180.png │ │ │ └── withTitle │ │ │ │ ├── left-centered.png │ │ │ │ ├── top-centered.png │ │ │ │ ├── top-default.png │ │ │ │ ├── bottom-centered.png │ │ │ │ ├── right-centered.png │ │ │ │ ├── top-centered-45.png │ │ │ │ ├── top-default-45.png │ │ │ │ ├── bottom-centered-45.png │ │ │ │ ├── left-centered-45.png │ │ │ │ └── right-centered-45.png │ │ ├── borderAlign │ │ │ ├── value-dataset.png │ │ │ ├── indexable-dataset.png │ │ │ ├── scriptable-dataset.png │ │ │ ├── value-element-options.png │ │ │ ├── indexable-element-options.png │ │ │ └── scriptable-element-options.png │ │ ├── borderColor │ │ │ ├── value-dataset.png │ │ │ ├── indexable-dataset.png │ │ │ ├── scriptable-dataset.png │ │ │ ├── value-element-options.png │ │ │ ├── indexable-element-options.png │ │ │ └── scriptable-element-options.png │ │ ├── borderWidth │ │ │ ├── value-dataset.png │ │ │ ├── indexable-dataset.png │ │ │ ├── scriptable-dataset.png │ │ │ ├── value-element-options.png │ │ │ ├── indexable-element-options.png │ │ │ └── scriptable-element-options.png │ │ ├── polar-area-animation-rotate.png │ │ ├── polar-area-animation-scale.png │ │ └── backgroundColor │ │ │ ├── value-dataset.png │ │ │ ├── indexable-dataset.png │ │ │ ├── scriptable-dataset.png │ │ │ ├── value-element-options.png │ │ │ ├── indexable-element-options.png │ │ │ └── scriptable-element-options.png │ ├── controller.scatter │ │ └── showLine │ │ │ ├── true.png │ │ │ └── undefined.png │ └── core.interaction │ │ ├── nearest-partial-bar.png │ │ ├── nearest-point-behind-scale.png │ │ └── drawActiveElementsOnTop-false.png ├── specs │ ├── plugin.colors.tests.js │ └── plugin.subtitle.tests.js ├── types │ ├── plugins │ │ ├── plugin.filler │ │ │ └── fill_target_true.ts │ │ ├── defaults.ts │ │ ├── plugin.tooltip │ │ │ ├── chart.tooltip.ts │ │ │ └── tooltip_scriptable_background_color.ts │ │ └── plugin.colors │ │ │ └── colors.ts │ ├── .eslintrc.yml │ ├── scales │ │ └── chart_options.ts │ ├── controllers │ │ ├── bar_floating_data.ts │ │ ├── doughnut_offset.ts │ │ ├── doughnut_outer_radius.ts │ │ ├── line_styling_array.ts │ │ └── line_scriptable_parsed_data.ts │ ├── tsconfig.json │ ├── overrides.ts │ └── scriptable_core_chart_options.ts ├── integration │ ├── node │ │ ├── test.js │ │ ├── test.cjs │ │ └── package.json │ ├── node-commonjs │ │ ├── test.js │ │ ├── test-auto.js │ │ └── package.json │ ├── typescript-node │ │ ├── tsconfig.json │ │ └── package.json │ ├── typescript-node-next │ │ ├── tsconfig.json │ │ └── package.json │ └── react-browser │ │ ├── src │ │ └── index.tsx │ │ └── tsconfig.json └── .eslintrc.yml ├── auto ├── auto.d.ts ├── auto.js └── auto.cjs ├── .github ├── dependabot.yml └── ISSUE_TEMPLATE │ └── config.yml ├── scripts ├── docs-config.sh └── publish.sh ├── .editorconfig └── .htmllintrc /helpers/helpers.js: -------------------------------------------------------------------------------- 1 | export * from '../dist/helpers.js'; 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | test/integration/react-browser/* 3 | -------------------------------------------------------------------------------- /docs/samples/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | rules: 2 | no-console: "off" 3 | -------------------------------------------------------------------------------- /helpers/helpers.d.ts: -------------------------------------------------------------------------------- 1 | export * from '../dist/helpers/index.js'; 2 | -------------------------------------------------------------------------------- /helpers/helpers.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('../dist/helpers.cjs'); 2 | -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'docs' 3 | - 'test/integration/*' 4 | -------------------------------------------------------------------------------- /src/types/color.d.ts: -------------------------------------------------------------------------------- 1 | export type Color = string | CanvasGradient | CanvasPattern; 2 | -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | not IE 11 3 | not IE_Mob 11 4 | maintained node versions 5 | -------------------------------------------------------------------------------- /docs/.vuepress/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/.vuepress/public/logo.png -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /docs/developers/init_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/developers/init_flowchart.png -------------------------------------------------------------------------------- /docs/getting-started/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/getting-started/preview.png -------------------------------------------------------------------------------- /docs/getting-started/usage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/getting-started/usage-1.png -------------------------------------------------------------------------------- /docs/getting-started/usage-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/getting-started/usage-2.png -------------------------------------------------------------------------------- /docs/getting-started/usage-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/getting-started/usage-3.png -------------------------------------------------------------------------------- /docs/getting-started/usage-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/getting-started/usage-4.png -------------------------------------------------------------------------------- /docs/getting-started/usage-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/getting-started/usage-5.png -------------------------------------------------------------------------------- /docs/getting-started/usage-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/getting-started/usage-6.png -------------------------------------------------------------------------------- /docs/getting-started/usage-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/getting-started/usage-7.png -------------------------------------------------------------------------------- /docs/getting-started/usage-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/getting-started/usage-8.png -------------------------------------------------------------------------------- /test/fixtures/mixed/bar+line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/mixed/bar+line.png -------------------------------------------------------------------------------- /auto/auto.d.ts: -------------------------------------------------------------------------------- 1 | import {Chart} from '../dist/types.js'; 2 | 3 | export * from '../dist/types.js'; 4 | export default Chart; 5 | -------------------------------------------------------------------------------- /docs/developers/event_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/developers/event_flowchart.png -------------------------------------------------------------------------------- /docs/developers/render_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/developers/render_flowchart.png -------------------------------------------------------------------------------- /docs/developers/scale_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/developers/scale_flowchart.png -------------------------------------------------------------------------------- /docs/developers/update_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/developers/update_flowchart.png -------------------------------------------------------------------------------- /src/types/basic.d.ts: -------------------------------------------------------------------------------- 1 | 2 | export type AnyObject = Record; 3 | export type EmptyObject = Record; 4 | -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/bar.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/line.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/pie.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/data-ty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/data-ty.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/data-xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/data-xy.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/labels.png -------------------------------------------------------------------------------- /docs/developers/destroy_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/developers/destroy_flowchart.png -------------------------------------------------------------------------------- /docs/general/colors-plugin-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/docs/general/colors-plugin-palette.png -------------------------------------------------------------------------------- /test/fixtures/element.line/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/default.png -------------------------------------------------------------------------------- /test/fixtures/element.line/skip/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/skip/all.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/bubble.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/mixed.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/radar.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/scatter.png -------------------------------------------------------------------------------- /test/fixtures/plugin.subtitle/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.subtitle/basic.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/ticks-unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/ticks-unit.png -------------------------------------------------------------------------------- /docs/.vuepress/redirects: -------------------------------------------------------------------------------- 1 | /charts/ /charts/line.html 2 | /general/ /general/data-structures.html 3 | /samples/ /samples/information.html -------------------------------------------------------------------------------- /test/fixtures/controller.bubble/clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bubble/clip.png -------------------------------------------------------------------------------- /test/fixtures/core.layouts/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.layouts/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/grid/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/grid/colors.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/tick-drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/tick-drawing.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/ticks-mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/ticks-mirror.png -------------------------------------------------------------------------------- /test/fixtures/element.line/skip/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/skip/first.png -------------------------------------------------------------------------------- /test/fixtures/element.line/skip/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/skip/last.png -------------------------------------------------------------------------------- /test/fixtures/element.point/rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/rotation.png -------------------------------------------------------------------------------- /test/fixtures/mixed/bar+line-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/mixed/bar+line-stacked.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/doughnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/doughnut.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/polarArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/polarArea.png -------------------------------------------------------------------------------- /test/fixtures/plugin.tooltip/opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.tooltip/opacity.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/issue-8806.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/issue-8806.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/rotated-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/rotated-45.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/rotated-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/rotated-5.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/rotated-85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/rotated-85.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/invalid-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/invalid-data.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/labels-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/labels-date.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/ticks-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/ticks-round.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/data/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/data/object.png -------------------------------------------------------------------------------- /test/fixtures/controller.bubble/padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bubble/padding.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/clip/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/clip/false.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/fill/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/fill/order.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/fill/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/fill/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/issue-8902.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/issue-8902.png -------------------------------------------------------------------------------- /test/fixtures/core.layouts/long-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.layouts/long-labels.png -------------------------------------------------------------------------------- /test/fixtures/core.layouts/stacked-boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.layouts/stacked-boxes.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/autoSkip/offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/autoSkip/offset.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/backgroundColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/backgroundColor.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/label-align-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/label-align-end.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/tick-backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/tick-backdrop.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/ticks-mirror-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/ticks-mirror-x.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/title/align-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/title/align-end.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/title/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/title/default.png -------------------------------------------------------------------------------- /test/fixtures/element.line/skip/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/skip/middle.png -------------------------------------------------------------------------------- /test/fixtures/element.line/stepped/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/stepped/after.png -------------------------------------------------------------------------------- /test/fixtures/element.line/tension/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/tension/one.png -------------------------------------------------------------------------------- /test/fixtures/element.line/tension/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/tension/zero.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/shape.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/stack.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/value.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/value.png -------------------------------------------------------------------------------- /test/fixtures/plugin.tooltip/box-padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.tooltip/box-padding.png -------------------------------------------------------------------------------- /test/fixtures/plugin.tooltip/point-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.tooltip/point-style.png -------------------------------------------------------------------------------- /test/fixtures/plugin.tooltip/positioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.tooltip/positioning.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/grace/grace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/grace/grace.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/tiny-numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/tiny-numbers.png -------------------------------------------------------------------------------- /test/fixtures/scale.logarithmic/min-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.logarithmic/min-max.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/autoskip-major.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/autoskip-major.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/custom-parser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/custom-parser.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/labels-strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/labels-strings.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/negative-times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/negative-times.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/ticks-capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/ticks-capacity.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/ticks-minunit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/ticks-minunit.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/ticks-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/ticks-reverse.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/ticks-stepsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/ticks-stepsize.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/normalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/normalize.png -------------------------------------------------------------------------------- /test/specs/plugin.colors.tests.js: -------------------------------------------------------------------------------- 1 | describe('Plugin.colors', () => { 2 | describe('auto', jasmine.fixture.specs('plugin.colors')); 3 | }); 4 | -------------------------------------------------------------------------------- /test/fixtures/controller.bar/baseLine/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/baseLine/left.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/baseLine/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/baseLine/top.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/data/parsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/data/parsing.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/point-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/point-style.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/radius/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/radius/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/segments/gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/segments/gap.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/fill/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/fill/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/point-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/point-style.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/label-align-inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/label-align-inner.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/label-align-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/label-align-start.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/title/align-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/title/align-start.png -------------------------------------------------------------------------------- /test/fixtures/element.line/skip/first-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/skip/first-span.png -------------------------------------------------------------------------------- /test/fixtures/element.line/skip/last-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/skip/last-span.png -------------------------------------------------------------------------------- /test/fixtures/element.line/stepped/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/stepped/before.png -------------------------------------------------------------------------------- /test/fixtures/element.line/stepped/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/stepped/default.png -------------------------------------------------------------------------------- /test/fixtures/element.line/stepped/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/stepped/middle.png -------------------------------------------------------------------------------- /test/fixtures/element.line/tension/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/tension/default.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/vertical.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/maxWidth/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/maxWidth/value.png -------------------------------------------------------------------------------- /test/fixtures/plugin.tooltip/corner-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.tooltip/corner-radius.png -------------------------------------------------------------------------------- /test/fixtures/scale.category/invalid-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.category/invalid-data.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/grace/grace-10%.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/grace/grace-10%.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/grace/grace-neg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/grace/grace-neg.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/grace/grace-pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/grace/grace-pos.png -------------------------------------------------------------------------------- /test/fixtures/scale.logarithmic/med-range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.logarithmic/med-range.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/source-auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/source-auto.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/source-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/source-data.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/aligned-pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/aligned-pixels.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-base-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-base-value.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/baseLine/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/baseLine/bottom.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/baseLine/mid-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/baseLine/mid-x.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/baseLine/mid-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/baseLine/mid-y.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/baseLine/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/baseLine/right.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/baseLine/value-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/baseLine/value-x.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/baseLine/value-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/baseLine/value-y.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/chart-area-clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/chart-area-clip.png -------------------------------------------------------------------------------- /test/fixtures/controller.bubble/point-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bubble/point-style.png -------------------------------------------------------------------------------- /test/fixtures/controller.bubble/radius-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bubble/radius-data.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/pie-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/pie-offset.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/pie-weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/pie-weight.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/clip/default-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/clip/default-x.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/clip/default-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/clip/default-y.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/clip/specified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/clip/specified.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/fill/no-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/fill/no-border.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/fill/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/fill/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/non-numeric-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/non-numeric-y.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/rotation/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/rotation/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/segments/range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/segments/range.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/segments/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/segments/single.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/segments/slope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/segments/slope.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/showLine/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/showLine/false.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/stacking/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/stacking/single.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/radius/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/radius/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/rotation/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/rotation/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/showLine/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/showLine/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/startAngle/135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/startAngle/135.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/startAngle/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/startAngle/180.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/startAngle/225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/startAngle/225.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/startAngle/270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/startAngle/270.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/startAngle/315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/startAngle/315.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/startAngle/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/startAngle/45.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/startAngle/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/startAngle/90.png -------------------------------------------------------------------------------- /test/fixtures/core.layouts/stacked-boxes-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.layouts/stacked-boxes-max.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/autoSkip/fit-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/autoSkip/fit-after.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/autoSkip/no-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/autoSkip/no-offset.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/label-align-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/label-align-center.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/tick-override-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/tick-override-styles.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/ticks/rotated-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/ticks/rotated-long.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/title/vertical-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/title/vertical-value.png -------------------------------------------------------------------------------- /test/fixtures/element.line/skip/middle-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/skip/middle-span.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-cross.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-dash.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-image.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-line.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-rect.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-star.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/end.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/dual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/dual.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/segments/gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/segments/gap.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/beforeDraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/beforeDraw.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/maxWidth/infinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/maxWidth/infinity.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/top-end-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/top-end-end.png -------------------------------------------------------------------------------- /test/fixtures/plugin.title/scriptable-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.title/scriptable-options.png -------------------------------------------------------------------------------- /test/fixtures/plugin.tooltip/caret-position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.tooltip/caret-position.png -------------------------------------------------------------------------------- /test/fixtures/scale.category/ticks-from-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.category/ticks-from-data.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/grace/issue-8912.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/grace/issue-8912.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/tick-count-min-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/tick-count-min-max.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/tick-step-min-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/tick-step-min-max.png -------------------------------------------------------------------------------- /test/fixtures/scale.logarithmic/large-range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.logarithmic/large-range.png -------------------------------------------------------------------------------- /test/fixtures/scale.logarithmic/null-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.logarithmic/null-values.png -------------------------------------------------------------------------------- /test/fixtures/scale.logarithmic/small-range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.logarithmic/small-range.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/border-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/border-dash.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/gridlines-z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/gridlines-z.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/offset-with-1-tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/offset-with-1-tick.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/offset-with-2-ticks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/offset-with-2-ticks.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/offset-with-no-ticks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/offset-with-no-ticks.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/skip-null-gridlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/skip-null-gridlines.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/source-auto-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/source-auto-linear.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/source-data-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/source-data-linear.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/source-labels-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/source-labels-linear.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/ticks-reverse-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/ticks-reverse-linear.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/ticks-reverse-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/ticks-reverse-offset.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/source-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/source-labels.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/ticks-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/ticks-reverse.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-flex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-flex.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-max.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderWidth/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderWidth/object.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderWidth/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderWidth/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/floatBar/float-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/floatBar/float-bar.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/horizontal-borders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/horizontal-borders.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/not-grouped/mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/not-grouped/mixed.png -------------------------------------------------------------------------------- /test/fixtures/controller.bubble/padding-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bubble/padding-update.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-NaN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-NaN.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/event-replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/event-replay.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderDash/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderDash/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderWidth/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderWidth/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderWidth/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderWidth/zero.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointStyle/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointStyle/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/radius/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/radius/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/radius/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/radius/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/segments/spanGaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/segments/spanGaps.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/showLine/dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/showLine/dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/stacking/updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/stacking/updates.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/angle-array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/angle-array.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/angle-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/angle-lines.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderDash/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderDash/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderWidth/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderWidth/zero.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/fill/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/fill/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointStyle/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointStyle/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/radius/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/radius/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.scatter/showLine/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.scatter/showLine/true.png -------------------------------------------------------------------------------- /test/fixtures/core.layouts/no-boxes-all-padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.layouts/no-boxes-all-padding.png -------------------------------------------------------------------------------- /test/fixtures/core.layouts/refit-vertical-boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.layouts/refit-vertical-boxes.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/border-behind-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/border-behind-elements.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/grid/border-over-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/grid/border-over-grid.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/tick-backdrop-rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/tick-backdrop-rotation.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/ticks/skip-by-callback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/ticks/skip-by-callback.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/title/horizontal-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/title/horizontal-value.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/title/vertical-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/title/vertical-center.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/x-axis-position-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/x-axis-position-center.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/y-axis-position-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/y-axis-position-center.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-circle.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/start.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/border.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/spline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/segments/slope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/segments/slope.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/end.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/dataset/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/dataset/order.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/dataset/span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/dataset/span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/maxWidth/undefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/maxWidth/undefined.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/padding/add-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/padding/add-column.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/left-end-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/left-end-end.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/right-end-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/right-end-end.png -------------------------------------------------------------------------------- /test/fixtures/scale.category/max-ticks-limit-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.category/max-ticks-limit-a.png -------------------------------------------------------------------------------- /test/fixtures/scale.category/max-ticks-limit-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.category/max-ticks-limit-b.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/gridlines-no-z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/gridlines-no-z.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/offset-auto-skip-ticks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/offset-auto-skip-ticks.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/financial-daily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/financial-daily.png -------------------------------------------------------------------------------- /test/specs/plugin.subtitle.tests.js: -------------------------------------------------------------------------------- 1 | describe('plugin.subtitle', function() { 2 | describe('auto', jasmine.fixture.specs('plugin.subtitle')); 3 | }); 4 | -------------------------------------------------------------------------------- /test/fixtures/controller.bar/backgroundColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/backgroundColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-offset.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-reverse.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-single.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-stacked.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderColor/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderColor/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderSkipped/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderSkipped/middle.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderSkipped/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderSkipped/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderWidth/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderWidth/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderWidth/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderWidth/negative.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/minBarLength/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/minBarLength/vertical.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/not-grouped/on-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/not-grouped/on-time.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/skipNull/combinations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/skipNull/combinations.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/stacking/issue-9105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/stacking/issue-9105.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/stacking/logarithmic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/stacking/logarithmic.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/stacking/replace-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/stacking/replace-data.png -------------------------------------------------------------------------------- /test/fixtures/controller.bubble/hover-radius-zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bubble/hover-radius-zero.png -------------------------------------------------------------------------------- /test/fixtures/controller.bubble/radius-scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bubble/radius-scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderDash/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderDash/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-hidden.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-offset.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-parsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-parsing.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-spacing.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-weight.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderCapStyle/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderCapStyle/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/clip/default-x-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/clip/default-x-max.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/clip/default-x-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/clip/default-x-min.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/clip/default-y-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/clip/default-y-max.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/clip/default-y-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/clip/default-y-min.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/fill/order-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/fill/order-default.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointStyle/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointStyle/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/rotation/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/rotation/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/rotation/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/rotation/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/stacking/bounds-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/stacking/bounds-data.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/angle-undefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/angle-undefined.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderWidth/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderWidth/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/radius/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/radius/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/rotation/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/rotation/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/rotation/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/rotation/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/startAngle/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/startAngle/default.png -------------------------------------------------------------------------------- /test/fixtures/core.interaction/nearest-partial-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.interaction/nearest-partial-bar.png -------------------------------------------------------------------------------- /test/fixtures/core.layouts/hidden-vertical-boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.layouts/hidden-vertical-boxes.png -------------------------------------------------------------------------------- /test/fixtures/core.layouts/stacked-boxes-max-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.layouts/stacked-boxes-max-index.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/label-align-inner-onlyX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/label-align-inner-onlyX.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/label-align-inner-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/label-align-inner-reverse.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/label-align-inner-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/label-align-inner-rotate.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/ticks/rotated-multi-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/ticks/rotated-multi-line.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/title/horizontal-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/title/horizontal-center.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/title/multi-line/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/title/multi-line/default.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/x-axis-position-dynamic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/x-axis-position-dynamic.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/y-axis-position-dynamic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/y-axis-position-dynamic.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-cross-rot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-cross-rot.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-rect-rot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-rect-rot.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-triangle.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/chart-options-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/chart-options-colors.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/end-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/end-span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/origin.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/no-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/no-border.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/span-dual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/span-dual.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/stepped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/stepped.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/origin.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/start.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/dataset/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/dataset/border.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/dataset/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/dataset/default.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/dataset/spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/dataset/spline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/horizontal-rtl-hitbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/horizontal-rtl-hitbox.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/label-textAlign/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/label-textAlign/center.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/label-textAlign/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/label-textAlign/left.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/label-textAlign/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/label-textAlign/right.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-line-chart-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-line-chart-area.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/bottom-end-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/bottom-end-end.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/left-start-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/left-start-start.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/top-start-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/top-start-start.png -------------------------------------------------------------------------------- /test/fixtures/plugin.tooltip/color-box-border-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.tooltip/color-box-border-dash.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/grace/grace-beginAtZero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/grace/grace-beginAtZero.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/tick-count-data-limits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/tick-count-data-limits.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/backgroundColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/backgroundColor.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/gridlines-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/gridlines-disable.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/skip-undefined-gridlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/skip-undefined-gridlines.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/ticks-reverse-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/ticks-reverse-max.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/ticks-reverse-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/ticks-reverse-min.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-animation-hide-show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-animation-hide-show.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-absolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-absolute.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-multiple.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-single-xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-single-xy.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderColor/border+dpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderColor/border+dpr.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderRadius/no-spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderRadius/no-spacing.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderSkipped/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderSkipped/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderWidth/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderWidth/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/minBarLength/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/minBarLength/horizontal.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/skipNull/bar-skip-null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/skipNull/bar-skip-null.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/stacking/order-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/stacking/order-default.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/stacking/remove-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/stacking/remove-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.bubble/autoPadding-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bubble/autoPadding-disabled.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderAlign/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderAlign/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderWidth/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderWidth/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-animation.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/pie-circumference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/pie-circumference.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/backgroundColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/backgroundColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderDash/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderDash/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderDashOffset/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderDashOffset/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderJoinStyle/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderJoinStyle/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderWidth/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderWidth/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointBorderColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointBorderColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointBorderWidth/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointBorderWidth/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointStyle/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointStyle/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/stacking/order-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/stacking/order-default.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderDash/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderDash/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/parse-object-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/parse-object-data.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/backgroundColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/backgroundColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderCapStyle/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderCapStyle/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderDash/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderDash/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderJoinStyle/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderJoinStyle/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointStyle/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointStyle/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointStyle/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointStyle/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.scatter/showLine/undefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.scatter/showLine/undefined.png -------------------------------------------------------------------------------- /test/fixtures/core.layouts/stacked-boxes-with-weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.layouts/stacked-boxes-with-weight.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/grid/scriptable-borderDash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/grid/scriptable-borderDash.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/label-offset-vertical-axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/label-offset-vertical-axes.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/title/multi-line/align-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/title/multi-line/align-end.png -------------------------------------------------------------------------------- /test/fixtures/element.point/point-style-rect-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.point/point-style-rect-rounded.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/dynamic-datasets-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/dynamic-datasets-default.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/before-dataset-draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/before-dataset-draw.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/start-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/start-span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/spline-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/spline-span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/end-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/end-span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/label-textAlign/rtl-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/label-textAlign/rtl-left.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/bottom-start-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/bottom-start-start.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/left-center-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/left-center-center.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/right-start-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/right-start-start.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/top-center-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/top-center-center.png -------------------------------------------------------------------------------- /test/fixtures/plugin.tooltip/color-box-border-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.tooltip/color-box-border-radius.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/edge-case-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/edge-case-1.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/edge-case-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/edge-case-2.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/edge-case-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/edge-case-3.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/edge-case-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/edge-case-4.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/min-max-skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/min-max-skip.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/no-collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/no-collision.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/tick-step-min-max-step-fp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/tick-step-min-max-step-fp.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/anglelines-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/anglelines-disable.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/indexable-gridlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/indexable-gridlines.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/pointLabels/padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/pointLabels/padding.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/bar-large-gap-between-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/bar-large-gap-between-data.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/ticks-reverse-min-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/ticks-reverse-min-max.png -------------------------------------------------------------------------------- /docs/scripts/components.js: -------------------------------------------------------------------------------- 1 | // Add Chart components needed in samples here. 2 | // Usable through `components[name]`. 3 | export {Tooltip} from '../../dist/chart.js'; 4 | -------------------------------------------------------------------------------- /test/fixtures/controller.bar/backgroundColor/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/backgroundColor/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/backgroundColor/loopable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/backgroundColor/loopable.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/backgroundColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/backgroundColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-default-begin-at-zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-default-begin-at-zero.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-flex-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-flex-offset.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-flex-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-flex-single.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-min-interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-min-interval.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-no-overlap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-no-overlap.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-per-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-per-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderRadius/border-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderRadius/border-radius.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderSkipped/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderSkipped/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/floatBar/data-as-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/floatBar/data-as-objects.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/floatBar/float-bar-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/floatBar/float-bar-stacked.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/minBarLength/vertical-neg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/minBarLength/vertical-neg.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/minBarLength/vertical-pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/minBarLength/vertical-pos.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/stacking/order-specified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/stacking/order-specified.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/backgroundColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/backgroundColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderAlign/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderAlign/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderColor/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderColor/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderDash/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderDash/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderJoinStyle/miter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderJoinStyle/miter.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderJoinStyle/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderJoinStyle/round.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderWidth/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderWidth/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-full-to-semi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-full-to-semi.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-rotation-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-rotation-300.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/single-slice-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/single-slice-offset.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/single-slice-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/single-slice-opacity.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderCapStyle/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderCapStyle/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/stacking/order-specified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/stacking/order-specified.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/stacking/stacked-scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/stacking/stacked-scatter.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/border-align-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/border-align-center.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/border-align-inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/border-align-inner.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/last-slice-animate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/last-slice-animate.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/centered.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/default.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderDashOffset/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderDashOffset/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderWidth/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderWidth/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointBorderColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointBorderColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointBorderWidth/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointBorderWidth/value.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/cartesian-axis-border-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/cartesian-axis-border-settings.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/title/multi-line/align-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/title/multi-line/align-start.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/x-axis-position-dynamic-margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/x-axis-position-dynamic-margin.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/before-datasets-draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/before-datasets-draw.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/origin-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/origin-span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/origin-spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/origin-spline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/interpolated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/interpolated.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/segments/alignToPixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/segments/alignToPixels.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/stack-multiple-scales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/stack-multiple-scales.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/end-circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/end-circular.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/origin-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/origin-span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/start-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/start-span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/label-textAlign/rtl-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/label-textAlign/rtl-center.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/label-textAlign/rtl-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/label-textAlign/rtl-right.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-point-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-point-style.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/padding/2cols-with-padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/padding/2cols-with-padding.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/bottom-center-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/bottom-center-center.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/title/right-center-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/title/right-center-center.png -------------------------------------------------------------------------------- /test/fixtures/scale.category/max-ticks-limit-norotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.category/max-ticks-limit-norotation.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/includeBounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/includeBounds.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/rotated-case-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/rotated-case-1.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/rotated-case-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/rotated-case-2.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/rotated-case-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/rotated-case-3.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/min-max-skip/rotated-case-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/min-max-skip/rotated-case-4.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/tick-count-min-max-not-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/tick-count-min-max-not-int.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/anglelines-indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/anglelines-indexable.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/anglelines-scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/anglelines-scriptable.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/circular-border-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/circular-border-dash.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/gridlines-scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/gridlines-scriptable.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/pointLabels/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/pointLabels/background.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/ticks-reverse-linear-min-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/ticks-reverse-linear-min-max.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderWidth/indexable-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderWidth/indexable-object.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/minBarLength/horizontal-neg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/minBarLength/horizontal-neg.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/minBarLength/horizontal-pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/minBarLength/horizontal-pos.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/stacking/logarithmic-strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/stacking/logarithmic-strings.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderAlign/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderAlign/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderRadius/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderRadius/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderWidth/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderWidth/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-circumference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-circumference.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-hidden-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-hidden-single.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/pie-border-align-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/pie-border-align-center.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/pie-border-align-inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/pie-border-align-inner.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/backgroundColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/backgroundColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderDashOffset/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderDashOffset/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/borderJoinStyle/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/borderJoinStyle/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointBackgroundColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointBackgroundColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointBorderColor/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointBorderColor/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointBorderColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointBorderColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointBorderWidth/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointBorderWidth/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointBorderWidth/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointBorderWidth/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/radius/scriptable-to-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/radius/scriptable-to-value.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderDash/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderDash/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/default-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/default-45.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/backgroundColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/backgroundColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderCapStyle/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderCapStyle/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderJoinStyle/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderJoinStyle/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointBackgroundColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointBackgroundColor/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointBorderColor/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointBorderColor/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointBorderWidth/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointBorderWidth/indexable.png -------------------------------------------------------------------------------- /test/fixtures/core.interaction/nearest-point-behind-scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.interaction/nearest-point-behind-scale.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/origin-stepped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/origin-stepped.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/origin-spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/origin-spline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/start-circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/start-circular.png -------------------------------------------------------------------------------- /test/fixtures/scale.linear/tick-count-min-max-not-aligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.linear/tick-count-min-max-not-aligned.png -------------------------------------------------------------------------------- /test/fixtures/scale.logarithmic/large-values-small-range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.logarithmic/large-values-small-range.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/circular-backgroundColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/circular-backgroundColor.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/source-data-offset-min-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/source-data-offset-min-max.png -------------------------------------------------------------------------------- /auto/auto.js: -------------------------------------------------------------------------------- 1 | import {Chart, registerables} from '../dist/chart.js'; 2 | 3 | Chart.register(...registerables); 4 | 5 | export * from '../dist/chart.js'; 6 | export default Chart; 7 | -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderWidth/scriptable-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderWidth/scriptable-object.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/floatBar/float-bar-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/floatBar/float-bar-horizontal.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/minBarLength/horizontal-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/minBarLength/horizontal-stacked.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/minBarLength/vertical-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/minBarLength/vertical-stacked.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/backgroundColor/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/backgroundColor/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/backgroundColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/backgroundColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderRadius/value-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderRadius/value-corners.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/cubicInterpolationMode/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/cubicInterpolationMode/value.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/point-style-offscreen-canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/point-style-offscreen-canvas.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointBackgroundColor/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointBackgroundColor/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderAlign/value-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderAlign/value-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderColor/value-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderColor/value-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderWidth/value-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderWidth/value-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/centered-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/centered-180.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/centered-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/centered-45.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/default-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/default-180.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/borderDashOffset/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/borderDashOffset/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointBorderColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointBorderColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointBorderWidth/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointBorderWidth/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/core.interaction/drawActiveElementsOnTop-false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.interaction/drawActiveElementsOnTop-false.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-left-far.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-left-far.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-top-far.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-top-far.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-top-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-top-near.png -------------------------------------------------------------------------------- /test/fixtures/plugin.colors/dynamic-datasets-force-override.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.colors/dynamic-datasets-force-override.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/origin-span-dual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/origin-span-dual.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/origin-spline-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/origin-spline-span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/spline-span-above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/spline-span-above.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/dataset/spline-span-below.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/dataset/spline-span-below.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/origin-circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/origin-circular.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/label-textAlign/horizontal-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/label-textAlign/horizontal-left.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/label-textAlign/horizontal-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/label-textAlign/horizontal-right.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/pointLabels/border-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/pointLabels/border-radius.png -------------------------------------------------------------------------------- /test/fixtures/scale.time/source-labels-linear-offset-min-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.time/source-labels-linear-offset-min-max.png -------------------------------------------------------------------------------- /test/fixtures/scale.timeseries/source-labels-offset-min-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.timeseries/source-labels-offset-min-max.png -------------------------------------------------------------------------------- /docs/scripts/helpers.js: -------------------------------------------------------------------------------- 1 | // Add helpers needed in samples here. 2 | // Usable through `helpers[name]`. 3 | export {color, getHoverColor, easingEffects} from '../../dist/helpers.js'; 4 | -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-flex-single-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-flex-single-reverse.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-min-interval-multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-min-interval-multi.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/bar-thickness-per-dataset-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/bar-thickness-per-dataset-stacked.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-animation-hide-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-animation-hide-last.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-border-align-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-border-align-center.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-border-align-inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-border-align-inner.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-outer-radius-pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-outer-radius-pixels.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-set-active-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-set-active-elements.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-spacing-and-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-spacing-and-offset.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/pointBackgroundColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/pointBackgroundColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/polar-area-animation-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/polar-area-animation-rotate.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/polar-area-animation-scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/polar-area-animation-scale.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointBackgroundColor/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointBackgroundColor/indexable.png -------------------------------------------------------------------------------- /test/fixtures/controller.radar/pointBackgroundColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.radar/pointBackgroundColor/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-bottom-far.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-bottom-far.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-left-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-left-near.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-right-far.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-right-far.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-right-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-right-near.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-top-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-top-center.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/origin-spline-above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/origin-spline-above.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/origin-stepped-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/origin-stepped-span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/drawTimeFillFalse/beforeDraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/drawTimeFillFalse/beforeDraw.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/points-outside-canvas-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/points-outside-canvas-initial.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/points-outside-canvas-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/points-outside-canvas-update.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/radar/boundary/origin-spline-span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/radar/boundary/origin-spline-span.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/borderRadius/legend-border-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/borderRadius/legend-border-radius.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-left-center-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-left-center-single.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-top-center-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-top-center-single.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-top-end-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-top-end-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/floatBar/data-as-objects-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/floatBar/data-as-objects-horizontal.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/skipNull/bar-skip-null-object-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/skipNull/bar-skip-null-object-data.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderJoinStyle/bevel-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderJoinStyle/bevel-default.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderRadius/value-large-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderRadius/value-large-radius.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/borderRadius/value-small-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/borderRadius/value-small-number.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-circumference-over-2pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-circumference-over-2pi.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-outer-radius-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-outer-radius-percent.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-rotation-per-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-rotation-per-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/single-slice-circumference-405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/single-slice-circumference-405.png -------------------------------------------------------------------------------- /test/fixtures/controller.line/cubicInterpolationMode/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.line/cubicInterpolationMode/scriptable.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/backgroundColor/value-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/backgroundColor/value-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderAlign/indexable-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderAlign/indexable-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderAlign/scriptable-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderAlign/scriptable-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderColor/indexable-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderColor/indexable-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderColor/scriptable-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderColor/scriptable-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderWidth/indexable-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderWidth/indexable-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderWidth/scriptable-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderWidth/scriptable-dataset.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-bottom-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-bottom-center.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-bottom-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-bottom-near.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-left-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-left-center.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-right-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-right-center.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/above-below-line-null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/above-below-line-null.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/label-textAlign/horizontal-rtl-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/label-textAlign/horizontal-rtl-left.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/label-textAlign/horizontal-rtl-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/label-textAlign/horizontal-rtl-right.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-bottom-center-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-bottom-center-single.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-bottom-end-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-bottom-end-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-left-default-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-left-default-center.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-left-end-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-left-end-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-left-start-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-left-start-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-right-center-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-right-center-single.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-right-default-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-right-default-center.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-right-end-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-right-end-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-top-center-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-top-center-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-top-start-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-top-start-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/floatBar/float-bar-stacked-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/floatBar/float-bar-stacked-horizontal.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/mirror-cross-align-left-far.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/mirror-cross-align-left-far.png -------------------------------------------------------------------------------- /test/fixtures/element.line/cubicInterpolationMode/monotone-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/cubicInterpolationMode/monotone-vertical.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-bottom-start-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-bottom-start-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-left-center-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-left-center-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-right-center-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-right-center-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-right-start-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-right-start-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/pointLabels/scriptable-color-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/pointLabels/scriptable-color-small.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderRadius/border-radius-stacked-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderRadius/border-radius-stacked-number.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/minBarLength/vertical-stacked-no-overlap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/minBarLength/vertical-stacked-no-overlap.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-circumference-per-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-circumference-per-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-rotation-circumference-8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.doughnut/doughnut-rotation-circumference-8x8.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/backgroundColor/indexable-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/backgroundColor/indexable-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/backgroundColor/scriptable-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/backgroundColor/scriptable-dataset.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderAlign/value-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderAlign/value-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderColor/value-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderColor/value-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderWidth/value-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderWidth/value-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/withTitle/left-centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/withTitle/left-centered.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/withTitle/top-centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/withTitle/top-centered.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/withTitle/top-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/withTitle/top-default.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-left-far-clipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-left-far-clipped.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/cross-align-right-far-clipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/cross-align-right-far-clipped.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/mirror-cross-align-left-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/mirror-cross-align-left-center.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/mirror-cross-align-left-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/mirror-cross-align-left-near.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/mirror-cross-align-right-far.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/mirror-cross-align-right-far.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/mirror-cross-align-right-near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/mirror-cross-align-right-near.png -------------------------------------------------------------------------------- /test/fixtures/element.line/cubicInterpolationMode/monotone-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/element.line/cubicInterpolationMode/monotone-horizontal.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/boundary/above-below-line-null-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/boundary/above-below-line-null-start.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/drawTimeFillFalse/beforeDatasetDraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/drawTimeFillFalse/beforeDatasetDraw.png -------------------------------------------------------------------------------- /test/fixtures/plugin.filler/line/drawTimeFillFalse/beforeDatasetsDraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.filler/line/drawTimeFillFalse/beforeDatasetsDraw.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-bottom-center-mulitiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-bottom-center-mulitiline.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/pointStyle-width/legend-pointStyle-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/pointStyle-width/legend-pointStyle-width.png -------------------------------------------------------------------------------- /test/fixtures/scale.radialLinear/pointLabels/no-more-than-half-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/scale.radialLinear/pointLabels/no-more-than-half-radius.png -------------------------------------------------------------------------------- /test/types/plugins/plugin.filler/fill_target_true.ts: -------------------------------------------------------------------------------- 1 | import type { ChartDataset } from '../../../../src/types.js'; 2 | 3 | const dataset: ChartDataset = { 4 | data: [], 5 | fill: true, 6 | }; 7 | -------------------------------------------------------------------------------- /auto/auto.cjs: -------------------------------------------------------------------------------- 1 | const chartjs = require('../dist/chart.cjs'); 2 | const {Chart, registerables} = chartjs; 3 | 4 | Chart.register(...registerables); 5 | 6 | module.exports = Object.assign(Chart, chartjs); 7 | -------------------------------------------------------------------------------- /test/fixtures/controller.bar/minBarLength/horizontal-stacked-no-overlap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/minBarLength/horizontal-stacked-no-overlap.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/backgroundColor/value-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/backgroundColor/value-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderAlign/indexable-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderAlign/indexable-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderColor/indexable-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderColor/indexable-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderWidth/indexable-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderWidth/indexable-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/withTitle/bottom-centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/withTitle/bottom-centered.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/withTitle/right-centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/withTitle/right-centered.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/withTitle/top-centered-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/withTitle/top-centered-45.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/withTitle/top-default-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/withTitle/top-default-45.png -------------------------------------------------------------------------------- /test/fixtures/core.scale/crossAlignment/mirror-cross-align-right-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/core.scale/crossAlignment/mirror-cross-align-right-center.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderAlign/scriptable-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderAlign/scriptable-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderColor/scriptable-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderColor/scriptable-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/borderWidth/scriptable-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/borderWidth/scriptable-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/withTitle/bottom-centered-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/withTitle/bottom-centered-45.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/withTitle/left-centered-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/withTitle/left-centered-45.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/pointLabels/withTitle/right-centered-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/pointLabels/withTitle/right-centered-45.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/legend-doughnut-right-center-mulitiline-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/legend-doughnut-right-center-mulitiline-labels.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/backgroundColor/indexable-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/backgroundColor/indexable-element-options.png -------------------------------------------------------------------------------- /test/fixtures/controller.polarArea/backgroundColor/scriptable-element-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.polarArea/backgroundColor/scriptable-element-options.png -------------------------------------------------------------------------------- /test/fixtures/plugin.legend/pointStyle-width/legend-pointStyle-width-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/plugin.legend/pointStyle-width/legend-pointStyle-width-default.png -------------------------------------------------------------------------------- /test/integration/node/test.js: -------------------------------------------------------------------------------- 1 | import {Chart} from 'chart.js'; 2 | import {valueOrDefault} from 'chart.js/helpers'; 3 | 4 | Chart.register({ 5 | id: 'TEST_PLUGIN', 6 | dummyValue: valueOrDefault(0, 1) 7 | }); 8 | -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderRadius/border-radius-stacked-number-mixed-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderRadius/border-radius-stacked-number-mixed-chart.png -------------------------------------------------------------------------------- /test/fixtures/controller.bar/borderRadius/border-radius-stacked-number-with-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judovana/Chart.js/master/test/fixtures/controller.bar/borderRadius/border-radius-stacked-number-with-order.png -------------------------------------------------------------------------------- /test/integration/node/test.cjs: -------------------------------------------------------------------------------- 1 | const {Chart} = require('chart.js'); 2 | const {valueOrDefault} = require('chart.js/helpers'); 3 | 4 | Chart.register({ 5 | id: 'TEST_PLUGIN', 6 | dummyValue: valueOrDefault(0, 1) 7 | }); 8 | -------------------------------------------------------------------------------- /test/integration/node-commonjs/test.js: -------------------------------------------------------------------------------- 1 | const {Chart} = require('chart.js'); 2 | const {valueOrDefault} = require('chart.js/helpers'); 3 | 4 | Chart.register({ 5 | id: 'TEST_PLUGIN', 6 | dummyValue: valueOrDefault(0, 1) 7 | }); 8 | -------------------------------------------------------------------------------- /test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | jasmine: true 3 | 4 | globals: 5 | acquireChart: true 6 | afterEvent: true 7 | Chart: true 8 | moment: true 9 | waitForResize: true 10 | 11 | rules: 12 | max-statements: ["warn", 50] 13 | -------------------------------------------------------------------------------- /test/integration/node-commonjs/test-auto.js: -------------------------------------------------------------------------------- 1 | const Chart = require('chart.js/auto'); 2 | const {valueOrDefault} = require('chart.js/helpers'); 3 | 4 | Chart.register({ 5 | id: 'TEST_PLUGIN', 6 | dummyValue: valueOrDefault(0, 1) 7 | }); 8 | -------------------------------------------------------------------------------- /scripts/docs-config.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | source ./scripts/utils.sh 6 | 7 | VERSION=$1 8 | MODE=$2 9 | 10 | TAG=$(tag_from_version "$VERSION" "$MODE") 11 | 12 | sed -i -e "s/VERSION/$TAG/g" "docs/.vuepress/config.ts" 13 | -------------------------------------------------------------------------------- /src/elements/index.js: -------------------------------------------------------------------------------- 1 | export {default as ArcElement} from './element.arc.js'; 2 | export {default as LineElement} from './element.line.js'; 3 | export {default as PointElement} from './element.point.js'; 4 | export {default as BarElement} from './element.bar.js'; 5 | -------------------------------------------------------------------------------- /src/core/core.layouts.defaults.js: -------------------------------------------------------------------------------- 1 | export function applyLayoutsDefaults(defaults) { 2 | defaults.set('layout', { 3 | autoPadding: true, 4 | padding: { 5 | top: 0, 6 | right: 0, 7 | bottom: 0, 8 | left: 0 9 | } 10 | }); 11 | } 12 | -------------------------------------------------------------------------------- /test/integration/typescript-node/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES6", 4 | "moduleResolution": "Node", 5 | "noEmit": true, 6 | "lib": ["es2018", "DOM"] 7 | }, 8 | "include": [ 9 | "./src/**/*.ts", 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | NPM_TAG="next" 6 | 7 | if [[ "$VERSION" =~ ^[^-]+$ ]]; then 8 | echo "Release tag indicates a full release. Releasing as \"latest\"." 9 | NPM_TAG="latest" 10 | fi 11 | 12 | npm publish --tag "$NPM_TAG" 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Support, Help, and Advice 4 | url: https://stackoverflow.com/questions/tagged/chart.js 5 | about: Need help or support? Head to https://stackoverflow.com/questions/tagged/chart.js 6 | -------------------------------------------------------------------------------- /test/integration/typescript-node-next/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES6", 4 | "moduleResolution": "NodeNext", 5 | "noEmit": true, 6 | "lib": ["es2018", "DOM"] 7 | }, 8 | "include": [ 9 | "./src/**/*.ts", 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /docs/scripts/register.js: -------------------------------------------------------------------------------- 1 | import {Chart, registerables} from '../../dist/chart.js'; 2 | import Log2Axis from './log2'; 3 | import './derived-bubble'; 4 | import analyzer from './analyzer'; 5 | 6 | Chart.register(...registerables); 7 | Chart.register(Log2Axis); 8 | Chart.register(analyzer); 9 | -------------------------------------------------------------------------------- /test/types/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | rules: 2 | '@typescript-eslint/no-unused-vars': 'off' 3 | object-curly-spacing: ["warn", "always"] 4 | '@typescript-eslint/no-empty-interface': "warn" 5 | '@typescript-eslint/ban-types': "warn" 6 | '@typescript-eslint/adjacent-overload-signatures': "warn" 7 | -------------------------------------------------------------------------------- /test/types/scales/chart_options.ts: -------------------------------------------------------------------------------- 1 | import type { ChartOptions } from '../../../src/types.js'; 2 | 3 | const chartOptions: ChartOptions<'line'> = { 4 | scales: { 5 | x: { 6 | type: 'time', 7 | time: { 8 | unit: 'year' 9 | } 10 | }, 11 | } 12 | }; 13 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # https://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.html] 13 | indent_style = tab 14 | indent_size = 4 15 | -------------------------------------------------------------------------------- /test/types/controllers/bar_floating_data.ts: -------------------------------------------------------------------------------- 1 | import { Chart } from '../../../src/types.js'; 2 | 3 | const chart = new Chart('id', { 4 | type: 'bar', 5 | data: { 6 | labels: ['1', '2', '3'], 7 | datasets: [{ 8 | data: [[1, 2], [3, 4], [5, 6]] 9 | }] 10 | }, 11 | }); 12 | -------------------------------------------------------------------------------- /test/types/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json", 3 | "compilerOptions": { 4 | "noEmit": true, 5 | "rootDir": "../../" 6 | }, 7 | "include": [ 8 | "./", 9 | "../../src/", 10 | "../../dist/**/*.d.ts" 11 | ], 12 | "exclude": [ 13 | "./**/*.js" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /test/integration/react-browser/src/index.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {render} from 'react-dom'; 3 | import App from './App'; 4 | import AppAuto from './AppAuto'; 5 | 6 | render( 7 | 8 | 9 | 10 | , 11 | document.getElementById('root') 12 | ); 13 | -------------------------------------------------------------------------------- /test/types/controllers/doughnut_offset.ts: -------------------------------------------------------------------------------- 1 | import { Chart, ChartMeta, Element } from '../../../src/types.js'; 2 | 3 | const chart = new Chart('id', { 4 | type: 'doughnut', 5 | data: { 6 | labels: [], 7 | datasets: [{ 8 | data: [], 9 | offset: 40, 10 | }] 11 | }, 12 | options: { 13 | offset: 20, 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /test/types/controllers/doughnut_outer_radius.ts: -------------------------------------------------------------------------------- 1 | import { Chart } from '../../../src/types.js'; 2 | 3 | const chart = new Chart('id', { 4 | type: 'doughnut', 5 | data: { 6 | labels: [], 7 | datasets: [{ 8 | data: [], 9 | }] 10 | }, 11 | options: { 12 | radius: () => Math.random() > 0.5 ? 50 : '50%', 13 | } 14 | }); 15 | -------------------------------------------------------------------------------- /test/types/controllers/line_styling_array.ts: -------------------------------------------------------------------------------- 1 | import { Chart } from '../../../src/types.js'; 2 | 3 | const chart = new Chart('id', { 4 | type: 'line', 5 | data: { 6 | labels: [], 7 | datasets: [{ 8 | data: [], 9 | backgroundColor: ['red', 'blue'], 10 | hoverBackgroundColor: ['red', 'blue'], 11 | }] 12 | }, 13 | }); 14 | -------------------------------------------------------------------------------- /test/integration/node-commonjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "description": "chart.js should work in Node", 4 | "scripts": { 5 | "test": "npm run test-index && npm run test-auto", 6 | "test-index": "node test.js", 7 | "test-auto": "node test-auto.js" 8 | }, 9 | "dependencies": { 10 | "chart.js": "workspace:*" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /test/types/plugins/defaults.ts: -------------------------------------------------------------------------------- 1 | import { defaults } from '../../../src/types.js'; 2 | 3 | // https://github.com/chartjs/Chart.js/issues/8711 4 | const original = defaults.plugins.legend.labels.generateLabels; 5 | 6 | defaults.plugins.legend.labels.generateLabels = function(chart) { 7 | return [{ 8 | datasetIndex: 0, 9 | text: 'test' 10 | }]; 11 | }; 12 | -------------------------------------------------------------------------------- /test/integration/node/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "description": "chart.js should work in Node", 4 | "type": "module", 5 | "scripts": { 6 | "test": "npm run test-mjs && npm run test-cjs", 7 | "test-mjs": "node test.js", 8 | "test-cjs": "node test.cjs" 9 | }, 10 | "dependencies": { 11 | "chart.js": "workspace:*" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/types/overrides.ts: -------------------------------------------------------------------------------- 1 | import { Chart } from '../../src/types.js'; 2 | 3 | Chart.overrides.bar.scales.x.type = 'time'; 4 | 5 | Chart.overrides.bar.plugins.title.display = false; 6 | 7 | Chart.overrides.line.datasets.bar.backgroundColor = 'red'; 8 | 9 | Chart.overrides.line.animation = false; 10 | Chart.overrides.line.datasets.bar.animation = { duration: 100 }; 11 | -------------------------------------------------------------------------------- /test/types/plugins/plugin.tooltip/chart.tooltip.ts: -------------------------------------------------------------------------------- 1 | import { Chart } from '../../../../src/types.js'; 2 | 3 | const chart = new Chart('id', { 4 | type: 'line', 5 | data: { 6 | labels: [], 7 | datasets: [{ 8 | data: [] 9 | }] 10 | }, 11 | }); 12 | 13 | const tooltip = chart.tooltip; 14 | 15 | const active = tooltip && tooltip.getActiveElements(); 16 | -------------------------------------------------------------------------------- /test/integration/react-browser/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "jsx": "react", 4 | "target": "ES6", 5 | "moduleResolution": "Node", 6 | "allowSyntheticDefaultImports": true, 7 | "alwaysStrict": true, 8 | "strict": true, 9 | "noEmit": true 10 | }, 11 | "include": [ 12 | "./**/*.tsx", 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /test/types/controllers/line_scriptable_parsed_data.ts: -------------------------------------------------------------------------------- 1 | import { Chart } from '../../../src/types.js'; 2 | 3 | const chart = new Chart('id', { 4 | type: 'line', 5 | data: { 6 | labels: [], 7 | datasets: [{ 8 | data: [], 9 | backgroundColor: (context) => { 10 | return context.parsed.y > 10 ? 'green' : 'red'; 11 | } 12 | }] 13 | }, 14 | }); 15 | -------------------------------------------------------------------------------- /test/types/scriptable_core_chart_options.ts: -------------------------------------------------------------------------------- 1 | import type { ChartConfiguration } from '../../src/types.js'; 2 | 3 | const getConfig = (): ChartConfiguration<'bar'> => { 4 | return { 5 | type: 'bar', 6 | data: { 7 | datasets: [] 8 | }, 9 | options: { 10 | backgroundColor: (context) => context.active ? '#fff' : undefined, 11 | } 12 | }; 13 | }; 14 | 15 | -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/single-slice-offset.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | config: { 3 | type: 'doughnut', 4 | data: { 5 | labels: ['A'], 6 | datasets: [{ 7 | data: [385], 8 | backgroundColor: 'rgba(0,0,0,0.3)', 9 | borderColor: 'rgba(0,0,0,0.5)', 10 | }] 11 | }, 12 | options: { 13 | offset: 20 14 | } 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /test/integration/typescript-node/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "type": "module", 4 | "description": "chart.js should work in node typescript project", 5 | "dependencies": { 6 | "chart.js": "workspace:*", 7 | "typescript": "^4.7.4" 8 | }, 9 | "scripts": { 10 | "test": "tsc" 11 | }, 12 | "devDependencies": { 13 | "ts-expect": "^1.3.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /test/integration/typescript-node-next/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "type": "module", 4 | "description": "chart.js should work in node next typescript project", 5 | "dependencies": { 6 | "chart.js": "workspace:*", 7 | "typescript": "^4.7.4" 8 | }, 9 | "scripts": { 10 | "test": "tsc" 11 | }, 12 | "devDependencies": { 13 | "ts-expect": "^1.3.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/scales/index.js: -------------------------------------------------------------------------------- 1 | export {default as CategoryScale} from './scale.category.js'; 2 | export {default as LinearScale} from './scale.linear.js'; 3 | export {default as LogarithmicScale} from './scale.logarithmic.js'; 4 | export {default as RadialLinearScale} from './scale.radialLinear.js'; 5 | export {default as TimeScale} from './scale.time.js'; 6 | export {default as TimeSeriesScale} from './scale.timeseries.js'; 7 | -------------------------------------------------------------------------------- /.htmllintrc: -------------------------------------------------------------------------------- 1 | { 2 | "indent-style": "tabs", 3 | "line-end-style": false, 4 | "attr-quote-style": "double", 5 | "spec-char-escape": false, 6 | "attr-bans": [ 7 | "align", 8 | "background", 9 | "bgcolor", 10 | "border", 11 | "frameborder", 12 | "longdesc", 13 | "marginwidth", 14 | "marginheight", 15 | "scrolling" 16 | ], 17 | "tag-bans": [ "b", "i" ], 18 | "id-class-style": false 19 | } 20 | -------------------------------------------------------------------------------- /test/types/plugins/plugin.colors/colors.ts: -------------------------------------------------------------------------------- 1 | import { Chart } from '../../../../src/types.js'; 2 | 3 | const chart = new Chart('id', { 4 | type: 'bubble', 5 | data: { 6 | labels: [], 7 | datasets: [{ 8 | data: [] 9 | }] 10 | }, 11 | options: { 12 | plugins: { 13 | colors: { 14 | enabled: true, 15 | forceOverride: false, 16 | } 17 | } 18 | } 19 | }); 20 | -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/pie-offset.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | config: { 3 | type: 'pie', 4 | data: { 5 | labels: ['Red', 'Blue', 'Yellow'], 6 | datasets: [{ 7 | data: [12, 4, 6], 8 | backgroundColor: ['red', 'blue', 'yellow'] 9 | }] 10 | }, 11 | options: { 12 | offset: 40, 13 | layout: { 14 | padding: 50 15 | } 16 | } 17 | } 18 | }; 19 | -------------------------------------------------------------------------------- /test/types/plugins/plugin.tooltip/tooltip_scriptable_background_color.ts: -------------------------------------------------------------------------------- 1 | import { Chart } from '../../../../src/types.js'; 2 | 3 | const chart = new Chart('id', { 4 | type: 'bar', 5 | data: { 6 | labels: [], 7 | datasets: [{ 8 | data: [] 9 | }] 10 | }, 11 | options: { 12 | plugins: { 13 | tooltip: { 14 | backgroundColor: (ctx) => 'black', 15 | } 16 | } 17 | }, 18 | }); 19 | -------------------------------------------------------------------------------- /src/plugins/index.js: -------------------------------------------------------------------------------- 1 | export {default as Colors} from './plugin.colors.js'; 2 | export {default as Decimation} from './plugin.decimation.js'; 3 | export {default as Filler} from './plugin.filler/index.js'; 4 | export {default as Legend} from './plugin.legend.js'; 5 | export {default as SubTitle} from './plugin.subtitle.js'; 6 | export {default as Title} from './plugin.title.js'; 7 | export {default as Tooltip} from './plugin.tooltip.js'; 8 | -------------------------------------------------------------------------------- /test/fixtures/controller.doughnut/doughnut-offset.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | config: { 3 | type: 'doughnut', 4 | data: { 5 | labels: ['Red', 'Blue', 'Yellow'], 6 | datasets: [{ 7 | data: [12, 4, 6], 8 | backgroundColor: ['red', 'blue', 'yellow'] 9 | }] 10 | }, 11 | options: { 12 | offset: 40, 13 | layout: { 14 | padding: 50 15 | } 16 | } 17 | } 18 | }; 19 | --------------------------------------------------------------------------------