Skip to content

Releases: DataV-Team/Charts

0.2.18-alpha (2020-10-30)

30 Oct 02:51
Compare
Choose a tag to compare
Pre-release

Lock Dependencies

  • @jiaminghi/c-render: lock ^0.4.3.

0.2.17-alpha (2020-07-02)

02 Jul 02:57
Compare
Choose a tag to compare
Pre-release

Bug Fixes

  • numberText: Fix: When rendering, 0 is ignored.

V0.2.16-alpha (2020-06-16)

16 Jun 05:42
Compare
Choose a tag to compare
Pre-release

Perfect

  • numberText: Add number formatter.

V0.2.15-alpha (2020-05-06)

06 May 07:02
Compare
Choose a tag to compare
Pre-release

Perfect

  • pie: Optimization percent calculation.

V0.2.14-alpha (2019-05-02)

02 May 10:04
Compare
Choose a tag to compare
Pre-release

Perfect

  • numberText: Graph of numberText support \n to line feed.

V0.2.13-alpha (2020-04-15)

15 Apr 09:34
Compare
Choose a tag to compare
Pre-release

Perfect

  • Axis: Perfect axis calculation of min & max.

V0.2.12-alpha (2020-01-15)

15 Jan 11:04
Compare
Choose a tag to compare
Pre-release

Perfect

  • Pie: Optimized percentage accuracy calculation.

V0.2.11-alpha (2020-01-05)

05 Jan 12:47
Compare
Choose a tag to compare
Pre-release

Bug Fixes

  • util->deepMerge: Object property references are the same in some cases.

V0.2.10-alpha (2019-12-25)

25 Dec 02:24
Compare
Choose a tag to compare
Pre-release

Bug Fixes

  • Pie: PercentToFixed exception display.

V0.2.9 (2019-11-26)

26 Nov 08:02
Compare
Choose a tag to compare
V0.2.9 (2019-11-26) Pre-release
Pre-release
  • Bar: Bar supports independent color, each bar can be set in different colors.
    const config = {
      someConfig,
      series: [
        {
          type: 'bar',
          /**
           * @description Independent color mode
           * When set to true, independent color mode is enabled
           * @type {Boolean}
           * @default independentColor = false
           */
          independentColor: true,
          /**
           * @description Independent colors
           * Only effective when independent color mode is enabled
           * Default value is the same as the color in the root configuration
           * Two-dimensional color array can produce gradient colors
           * @type {Array}
           * @example independentColor = ['#fff', '#000']
           * @example independentColor = [['#fff', '#000'], '#000']
           */
          independentColors: [],
        }
      ]
    }