Как создать пользовательские всплывающие подсказки в XPlot.GoogleCharts Treemap (F #)? - PullRequest
1 голос
/ 29 октября 2019

Я хочу создать всплывающую подсказку, как описано на сайте Google (https://developers.google.com/chart/interactive/docs/gallery/treemap#tooltips),, и я не могу понять, как.

Я взял пример из https://fslab.org/XPlot/chart/google-treemap-chart.html и хочу изменитьэто, так что у меня есть пользовательские подсказки:

let tt = 
    Tooltip (
        //...

    )

let options =
    Options(
        title = "Treemap",
        minColor= "#009688",
        midColor= "#f7f7f7",
        maxColor= "#ee8100",
        headerHeight = 50,
        headerColor = "#9ebcda",
        fontColor = "black",
        tooltip = tt,
        showTooltips = true,
        showScale = true
)

data
|> Chart.Treemap
|> Chart.WithOptions options
|> Chart.WithLabels
    [
        "Location"
        "Parent"
        "Market trade volume (size)"
        "Market increase/decrease (color)"
]
|> Chart.Show
...