7

When using Spotfire (v7.8.1), how would I display a custom tool tip over a cross table's column values?

While there is an option to customize tooltips for pie charts, I can't find one for the cross table visualization. Is there a custom expression that can edit the text on tool tip?

Any response is much appreciated!

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
tripats
  • 71
  • 2

2 Answers2

2

There is no way to control tooltips for tables visuals in Spotfire

drxl
  • 364
  • 1
  • 7
1

There is no way to directly control tooltips for a Spotfire CrossTable however you can hack extra info into a cell value by using Concatenate() and new line characters \n

UniqueConcatenate(Concatenate([CELL_VALUE],'\n',[TOOLTIP_VAL_1],'\n',[TOOLTIP_VAL_2]))

The value is wrapped in UniqueConcatenate since this counts as a aggregation function

RobbieM
  • 11
  • 2