This repository was archived by the owner on May 29, 2018. It is now read-only.
Improve bubble and scatter csv re: #62#66
Open
personman wants to merge 1 commit intohighcharts:masterfrom
Open
Improve bubble and scatter csv re: #62#66personman wants to merge 1 commit intohighcharts:masterfrom
personman wants to merge 1 commit intohighcharts:masterfrom
Conversation
The layout for the csv file is now Series Name, X, Y, (Z). Then I use the X and Y axis labels as headers. There's no Z axis label for bubble charts, so I just use 'Bubble Size' as the header.
This was referenced Sep 4, 2015
Contributor
|
Thanks for the PR, but we'd like to keep series consistent, so we need to work out a general way to label the columns that works for all series types. Using the axis titles is a good idea, except your code gives an error when it is not defined. Currently a clear bug with bubbles is that the Z value is not represented at all in the column headers: http://jsfiddle.net/highcharts/cqjvD/959/ |
Contributor
|
I just commited a fix for the missing column headers. I also added a formatter option. See it live on jsFiddle. How does this work for you? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The layout for the csv file is now Series Name, X, Y, (Z). Then I use the X and Y axis labels as headers. There's no Z axis label for bubble charts, so I just use 'Bubble Size' as the header.