edgars.sults

Members
  • Content count

    6
  • Joined

  • Last visited

About edgars.sults

  • Rank
    Forum Newbie
  1. Tooltips of overlapping data plot points

    Ok, that's what I thought I'd have to do. Thanks for your help.
  2. Tooltips of overlapping data plot points

    It's currently displaying the default tooltip, for example, "Pre Avg, 08/11,
  3. Tooltips of overlapping data plot points

    Attached now. It's the part that is passed to setDataXML(). chart xml.txt
  4. Tooltips of overlapping data plot points

    As you'll see when you render the data, there are many overlapping lines, but only the topmost tooltip is visible. I need to see all the product names in the tooltip if they have the same value on that day. I can't make the XML appear in the post. I tried code tags. How can I show it?
  5. Tooltips of overlapping data plot points

    Thanks for the quick reply! Setting legendAllowDrag to 0 helped fix the legend problem. The tooltip problem, however, is more difficult than I hoped. According to the documentation, I'd have to manually find all points that are overlapping and build custom tooltips for each of them in order show the data that might be hidden underneath. That will involve a bit of work. Too bad there's no easier way.
  6. I have a line chart. Often the lines overlap. When this happens, only the topmost line is visible. That's ok, but I'd like the data point tooltips to display not only the topmost value, but also the values of data points below it. Otherwise it's really hard to tell which data plots are under it and match the value. Is this clear enough? I guess it could be done by checking which data points overlap and aggregating the tooltips, but that sounds complex. Is there any built-in way to show the data? And another issue... I can drag the legend around the chart. How can I turn that off?