Focal Point
[SOLVED] Trying to bring the X-AXIS values along with the Data labels.

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

April 16, 2018, 12:01 PM
srajeevan
[SOLVED] Trying to bring the X-AXIS values along with the Data labels.
Hi I have a 3d riser chart for that i am trying to add custom tool tip.
I have added some tooltip for series 0 and 1 with the help of the below function.
  
series: [
 {'series': 0, color: 'RGB(102,204,155)',
   tooltip: function(d,s,g){
   var c = this.getSeries(s).color;
   var lbl = this.getSeries(s).label;
   return '<span style=\"color: ' + c + '\">value: ' + d + '<br />series name: ' + lbl +'</span>'; }
     },
{'series': 1, color: 'RGB(204,102,204)',
   tooltip: function(d,s,g){
   var c = this.getSeries(s).color;
   var lbl = this.getSeries(s).label;
   return '<span style=\"color: ' + c + '\">value: ' + d + '<br />series name: ' + lbl +'</span>'; }
     }
	 ]

This works perfect.
Along with the series name i wanted to append the BY FIELD value for that.
Series 0 is count.
  
Ex : BY FIELD is  MONTH
So along with 
value : 1050
series name :count for Jan


I am trying to add that 'for Jan' part using the BY FIELD.

Any suggestions.

This message has been edited. Last edited by: FP Mod Chuck,


WF8206,Windows 7,8,10
HTM,PDF,EXCEL
April 16, 2018, 04:38 PM
srajeevan
Implemented this with the help of the following code from another post.

  
setToolTipMode(false);
setUserToolTip("Object Name:[ON][R]Object ID:[OID][R]Object Instance:[OIN][R]Object Description:[OD][R]Series Label:[SL][R]Group Label:[GL][R]X Value:[XV][R]Y Value:[YV][R]Z Value:[ZV]")



WF8206,Windows 7,8,10
HTM,PDF,EXCEL