🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

github.com/bumbeishvili/d3-tooltip

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/bumbeishvili/d3-tooltip

v0.0.0-20220313092838-27a8a85dcb74
Source
Go
Version published
Created
Source

SWUbanner

D3 tooltip

See the Project Page for interactive example!

See usage example at this codepen

screenshot

image

Highlights

  • Dynamic resizing
  • High number of customization options

Usage

  • Include tooltip.js file into you app
 <script src="tooltip.js"></script>
  • Initialize tooltip inside your d3 visual
 var tooltip = d3.componentsTooltip()
        .container('.svg-element')
        .content([
          {
            left: "default id",
            right: "{id}"
          },
          {
            left: "default value",
            right: "{value}"
          },
        ])
  • Show or hide it on your events
   // show tooltip
        tooltip
        .x(100)
        .y(100)
        .show({id:1,value:"some value",name:"some large name"})
//hide
tooltip.hide()

Author

David B (twitter)
David B (linkedin)

I am available for freelance data visualization work. Please contact me in case you'd like me to help you with my experience and expertise

You can also book data viz related consultation session with me

FAQs

Package last updated on 13 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts