Skip to main content
Became Hot Network Question
Tweeted twitter.com/StackMma/status/1444814563044691979
Formatted code
Source Link
MarcoB
  • 68k
  • 19
  • 98
  • 205

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]|>
  }]

Dataset

How can I force the value in column B to be 1 and and 2 instead of ... ?

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]|>
  }]

Dataset

How can I force the value in column B to be 1 and 2 instead of ... ?

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]|>
  }]

Dataset

How can I force the value in column B to be 1 and 2 instead of ... ?

Source Link
Murta
  • 26.5k
  • 6
  • 78
  • 173

Tooltip issue using Dataset

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]|>
  }]

Dataset

How can I force the value in column B to be 1 and 2 instead of ... ?