1. 12 1月, 2021 5 次提交
  2. 11 1月, 2021 6 次提交
  3. 10 1月, 2021 3 次提交
  4. 09 1月, 2021 4 次提交
    • S
      Merge pull request #13994 from apache/fix/bar-race · 6586c999
      sushuang 提交于
      Fix: improvement and some fix of bar-race (realtimeSort)
      6586c999
    • Y
      Merge pull request #13992 from susiwen8/marker-tooltip · 3e3ef0b5
      Yi Shen 提交于
      Fix(tooltip): 'findEventDispatcher' should add  'returnFirstMatch'  f…
      3e3ef0b5
    • 1
      fix: realtimeSort: · 2a1bad2e
      100pah 提交于
      + When base axis is x, the initial sort should not be different from the subsequent sort.
      + Remove the transition animation of the baseAxis init state to the first sorted state.
      + Fix that throw error when series data does not cover all axis category.
      + Fix some incorrect logic like:
          + BarView sortMap input param
          + OrdinalScale['scale']
          + OrdinalScale['getTicks']
      + Simplify and clarify the params `sortInfo` of action "changeAxisOrder".
          ```js
          // before:
          sortInfo: [
              // `beforeSortIndex` is not easy to understand and not necessary.
              { ordinalNumber: 2, beforeSortIndex: 4 },
              { ordinalNumber: 5, beforeSortIndex: 5 },
              { ordinalNumber: 3, beforeSortIndex: 0 },
              { ordinalNumber: 4, beforeSortIndex: 2 },
              { ordinalNumber: 0, beforeSortIndex: 3 },
              { ordinalNumber: 1, beforeSortIndex: 1 },
          ]
          // after:
          sortInfo: {
              ordinalNumbers: [2, 5, 3, 4, 0, 1]
          }
          ```
      + some small refactor: naming, code organization, type. Add comments.
      
      Test cases:
      test/bar-race.html
      test/bar-race2.html
      2a1bad2e
    • S
      Fix: add missing params for 'findEventDispatcher' · c2ab3326
      susiwen8 提交于
      c2ab3326
  5. 08 1月, 2021 11 次提交
  6. 07 1月, 2021 10 次提交
  7. 06 1月, 2021 1 次提交