sangohan / gwt-chronoscope

Automatically exported from code.google.com/p/gwt-chronoscope
GNU Lesser General Public License v2.1
0 stars 0 forks source link

Widget behavior changed: hover point values are gone and lines are pink #145

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Use http://api.timepedia.org/widget/chronoscope.js to create a simple 
JavaScript graph
2. The time series point values no longer appear in the key next to the label 
when hovering over the plot area as they used to.
3. All the time series lines (range) are now pink! (my daughter thinks it looks 
fine)

The demos are all effected as well:
http://www.timepedia.org/chronoscope/demo/advanced/

The benchmark still has the old behavior:
http://api.timepedia.org/benchmark/

What is the expected output? What do you see instead?
Expect to see point values in the key next to the label for each time series 
when hovering over the plot area.

Expect to either rotate the time series line colors through a sequence or have 
a control to set them explicitly.

What version of the product are you using? On what operating system?
Current http://api.timepedia.org/widget/chronoscope.js

Please provide any additional information below.
Thanks.

Original issue reported on code.google.com by ctrab...@gmail.com on 30 Sep 2010 at 5:16

GoogleCodeExporter commented 9 years ago
Default colors should be back to normal, but the default for values in the 
legend labels was switched to off in order to have more stable widths.  To 
re-enable legend label hover values, add this to your stylesheet:

  axislegend labels { visibility:visible; value-visibility:visible; }

Original comment by timepedia@gmail.com on 6 Oct 2010 at 2:22

GoogleCodeExporter commented 9 years ago

Thanks for the line color fix.

I can't seem to get the legend label hover values using:
axislegend labels { visibility:visible; value-visibility:visible; }

Would it be possible to add an example to the demo page?

Original comment by ctrab...@gmail.com on 9 Oct 2010 at 7:02

GoogleCodeExporter commented 9 years ago
Never mind, I figure out how to get the correct styling from some examples in 
the repository:

<style type="text/gss">
  axislegend labels { visibility:visible; value-visibility:visible; }
</style>

Original comment by ctrab...@gmail.com on 13 Oct 2010 at 4:02