Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#823] [3.0] Stack차트 데이터 null대응 #830

Merged
merged 3 commits into from
Jun 15, 2021

Commits on Jun 8, 2021

  1. [#823] [3.0] Stack Chart 데이터 배열 속 null 값 예외처리

    - data 배열 속 null이 존재 할 경우 canvas의 lineTo 메소드에 null값이 그대로 들어가 이상현상 발생하여 0으로 치환하는 로직 넣음
    -  Tooltip에서 StackChart의 경우 original데이터를 참조하는데 첫번째 시리즈만 original데이터를 넘기지 않아 추가함
    jhee564 committed Jun 8, 2021
    Configuration menu
    Copy the full SHA
    f11d489 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2021

  1. [#823] [3.0] Stack Chart 데이터 배열 속 null 값 예외처리

    - stack 차트만 데이터 null에 대해서 0으로 치환하는 로직 수행하도록 수정
    - Stack에서 값이 null인 series는 tooltip에 표시되지 않도록 수정
    jhee564 committed Jun 10, 2021
    Configuration menu
    Copy the full SHA
    707acf7 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2021

  1. [#823] [3.0] Stack Chart 데이터 배열 속 null 값 예외처리

    ### line chart
    - Fill을 채우는 로직이 2번 수행되는 현상 제거
    - 데이터가 null값일 경우 Fill을 정상적으로 수행하지 않는 로직 개선
    - Stack 예제 코드 수정
    ### 공통
    - Stack Series의 y포지션을 계산하는 로직에서 바로 직전 series만 참조하는 로직 개선
    - label타입이 'step'일 경우 null을 처리 하니 못하는 현상 제거
    jhee564 committed Jun 11, 2021
    Configuration menu
    Copy the full SHA
    068992e View commit details
    Browse the repository at this point in the history