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

fix: render stacked bar with stringified values #488

Merged
merged 4 commits into from
Dec 12, 2019

Commits on Dec 9, 2019

  1. fix: render stacked bar with stringified values

    The stacked bars are computed adding up the previous value with the current one. This works fine if
    the passed values are numbers. If the number is codified as a string, the resulting stacked value is
    a wrongly concatenated string of values. This commit cast every y value to a number, if NaN or null
    it will use null.
    
    fix elastic#487
    markov00 committed Dec 9, 2019
    Configuration menu
    Copy the full SHA
    963bb94 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2019

  1. Configuration menu
    Copy the full SHA
    0fe46fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2bb68db View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    13b9f18 View commit details
    Browse the repository at this point in the history