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

How to Skip the column for rendering of chart. #82

Open
kappu1996 opened this issue Sep 19, 2017 · 1 comment
Open

How to Skip the column for rendering of chart. #82

kappu1996 opened this issue Sep 19, 2017 · 1 comment

Comments

@kappu1996
Copy link

Hi Team,
I have a table having 5-6 column but i want graph for only column 3 and column 4 so how should i do this and i think this solution "data-graph-skip" won't work for me because i am getting th (table header) values dynamically so on my page i have single th tag displaying all the column dynamically by looping so is there any other quick idea for the same ?

I look forward to hear from you soon.

Regards,
Kapil

@gstoa
Copy link

gstoa commented Jan 15, 2018

In your HTML...

    <thead>
      <tr>
        <th></th>
        <th data-graph-hidden="1">column1</th>
        <th data-graph-hidden="1">column2</th>
        <th data-graph-stack-group="1">column3</th>
        <th data-graph-stack-group="1">column4</th>
        <th data-graph-hidden="1">column5</th>
        <th data-graph-hidden="1" style="display:none;">column6</th>
      </tr>
    </thead>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants