Focal Point
[SOLVED]Graph Bar Hover Color

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/7027033676

May 22, 2015, 03:29 PM
Jay Potter
[SOLVED]Graph Bar Hover Color
I am going blind reading the Graphic Manual. Does anyone know the property to set the color of a Bar on a bar graph when the mouse is hovering over it?

This message has been edited. Last edited by: Jay Potter,


WebFocus 8.1.5
iSeries/Windows
DB2/SQL/Access
Dev Studio
App Studio
Maintain
ReportCaster
May 22, 2015, 04:47 PM
eric.woerle
JSCHART? or other chart type?


Eric Woerle
8.1.05M Gen 913- Reporting Server Unix
8.1.05 Client Unix
Oracle 11.2.0.2
May 22, 2015, 05:01 PM
Jay Potter
Other Chart/8.0.6 Graph


WebFocus 8.1.5
iSeries/Windows
DB2/SQL/Access
Dev Studio
App Studio
Maintain
ReportCaster
May 26, 2015, 09:23 AM
<nick z>
It's mouseOverIndicator property.

Here is an example:
*GRAPH_JS
"mouseOverIndicator": {
         "enabled": true,
         "color": "yellow",
	"marker":{"size": 0}
},


May 26, 2015, 10:28 AM
Jay Potter
Thanks that worked


WebFocus 8.1.5
iSeries/Windows
DB2/SQL/Access
Dev Studio
App Studio
Maintain
ReportCaster
May 26, 2015, 11:07 AM
Francis Mariani
I find the default colour, yellow, to be very distracting, so I use an RGBA colour - 30% white, to me this appears as a better highlighting technique.

"mouseOverIndicator": {
  "enabled": true,
  "color": "rgba(255,255,255,0.3)",
  "marker": {"size": 0}
  },



Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
May 26, 2015, 11:37 AM
Jay Potter
Thanks! I do not like the yellow either. We actual have a company color we use whenever hovering over certain objects. I replaced "yellow" with that RGB color.


WebFocus 8.1.5
iSeries/Windows
DB2/SQL/Access
Dev Studio
App Studio
Maintain
ReportCaster