-
Notifications
You must be signed in to change notification settings - Fork 611
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
Can't use log scale with bar? #1368
Comments
The culprit is that we for
So we should avoid passing 0 through log scale) by default for @ayush29feb since you have to modify |
This is worth fixing. But for the examples, I recommend not using bar On Wed, May 18, 2016 at 2:49 PM, Kanit Wongsuphasawat <
|
Yep. We definitely wouldn't include this in the example gallery. More note for @ayush29feb, if we don't pass this through the scale, the correct value might not always be 0. For example, y-axis's value should be the height. |
@kanitw makes sense. Points work. |
Yeah I can take care of it while working on #1284 over the weekend |
Thanks On Wed, May 18, 2016, 19:50 Ayush Saraf notifications@github.com wrote:
|
@kanitw How should @ayush29feb get the height of the visualization/ cell? He needs to get it from the layout because the |
If you have layering that two layers do not have the same |
The cell height will only be available from the layout data source, though. |
If you have two layers that do not have the same layout, there should be more than one layout data sources. |
My question is how we access the layout from the mark properties? |
Good question. I was wrong about this sentence. (My memory starts coming back.)
The correct one is "there should be more than one |
This is not the issue. The issue is only how to access the layout data source. |
Actually, just like |
Yeah @domoritz, I think you actually can do that. |
I see. So we don't need access to the layout data source. Perfect. |
Another case -- I think we have the same problem if |
For example, we can't add
scale: {type: "log"}
to thehistogram
example.The text was updated successfully, but these errors were encountered: