When I try to create a tooltip for a Dataset item, I get ... instead of the item value. See the toy code example below:
tooltipValue = Plot[Sinc[x], {x, 0, 10}];
Dataset[{
<|"colA" -> 1, "colB" -> Tooltip[1, tooltipValue]|>
, <|"colA" -> 2, "colB" -> Tooltip[2, tooltipValue]|>
}]
How can I force the value in column B to be 1 and 2 instead of ... ?


ItemDisplayFunction -> (# &)inDataset. $\endgroup$