Skip to content

Instantly share code, notes, and snippets.

@shacheeswadia
Created November 21, 2021 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shacheeswadia/9c9dbcb215a2b94a8d9348d0107e6d0f to your computer and use it in GitHub Desktop.
Save shacheeswadia/9c9dbcb215a2b94a8d9348d0107e6d0f to your computer and use it in GitHub Desktop.
// tooltip settings
chart
.tooltip()
.useHtml(true)
.titleFormat(function () {
return data.x[this.x];
})
.format(function () {
return "Year: " + this.y + "<br>" + "GDP:$ " + this.z.toFixed(2);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment