Stacked Bar Chart - Removing Tooltips

(7 posts) (2 voices)
  1. mleary2001, Member

    Hello,

    I have my stacked bar chart just the way I like it, unfortunately some days we have way too much data to feed into the stacked bar chart, over 600 records. Of course, this takes a long time to load and I would like to cut the time down by not loading over 600 tooltips. Is it possible to do this?

    I have tried:

    select 'dbr.resultclass', 'no_tooltip';

    but no success.

    Thanks in advance,

    Mike

  2. myDBR Team, Key Master

    The tooltips add virtually no overhead to chart loading times. You might want to check the query itself. Also, you might want to use embedded SVG charts if you are not using them already.

    To turn off tooltips on chart, make sure you are running latest version and use command:

    select 'dbr.chart.options', 'tooltip', '';
    or
    select 'dbr.resultclass', 'no_tooltip';

    ---
    myDBR Team

  3. mleary2001, Member

    Hello again,

    I cannot get rid of the toolbars. I have put both of your suggestions into my code:

    /*myDBR chart code */
    select 'dbr.title', CONCAT('Elapsed Times Between Events - ', selected_date);
    select 'dbr.chart', 'StackedBar';
    select 'dbr.resultclass', 'no_tooltip';
    select 'dbr.chart.options', 'tooltip', '';

    Thanks in advance,

    Mike

  4. myDBR Team, Key Master

    Are you running the latest version?

    --
    myDBR Team

  5. mleary2001, Member

    I am using myDBR 4.3.0 (build 2483).

    Thanks,

    MIke

  6. myDBR Team, Key Master

    The current version, as of this writing, is myDBR 4.3.4 (build 2566).

    --
    myDBR Team

  7. mleary2001, Member

    That worked! I used select 'dbr.chart.options', 'tooltip', ''; and the tooltip disappeared. We need it to disappear for now.

    Soon, though, I will need your help formatting the tooltip.

    Thanks,

    Mike


Reply

You must log in to post.