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

multi y axis charts #114

Open
zdenop opened this issue Sep 3, 2021 · 1 comment
Open

multi y axis charts #114

zdenop opened this issue Sep 3, 2021 · 1 comment
Labels
enhancement New feature or request

Comments

@zdenop
Copy link

zdenop commented Sep 3, 2021

Is it possible to create multi y axis charts like this:

image

or like this?

image

At the moment I can generate only this:

image

with following code:

import pandas_bokeh
pandas_bokeh.output_notebook()

dfx = pd.DataFrame({
    'Month': ['2021-01', '2021-02', '2021-03', '2021-04'],
    'Total': [1500, 1200, 1700, 1600],
    'Average': [75.0, 63.15, 73.91, 76.19],
})
dfx.plot_bokeh(x="Month",
               title="Example",
               line_width=4,
               ylabel = "Totals",
               colormap=["#0000ff99", "#ff000099"])
@PatrikHlobil
Copy link
Owner

Hello @zdenop,

I already started to implement a feature like this. however, this is a pretty big feature request right now unfortunatly and I am quite busy at the moment.

Best Patrik

@PatrikHlobil PatrikHlobil added the enhancement New feature or request label Sep 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants