Giter VIP home page Giter VIP logo

Comments (1)

andredumas avatar andredumas commented on September 22, 2024 1

Definitely on the roadmap, although this is about as far is i've got...

If you can't wait, I've seen some users use an off the shelf tooltip/hint library. Or you could roll your own, should be straight forward. Crosshair events emit enough information for you to determine which index is displayed. See example: http://bl.ocks.org/andredumas/045f550b72ad46301130

It could be something like:

function move(coords) {
  var index = financetime.invertToIndex(coords[0])
  // Map the index to your calculated moving average. Set the legend data
  var legendSelection = d3.selectAll('text.legend').data(smaArrays.map(function(d) { 
    // smaArrays is an array of arrays
    return d[index].value;  // Take into account SMA preroll when converting index to value
  });

  legendSelection.enter()
    .append('text')
      .classed(function(d, i) { return 'legend sma-' + i; }); // define classes to match SMA colors

  legendSelection.text(function(d) { return 'SMA: ' + d; });
}

crosshair.on("move", move);

BTW I've jotted this down off the top of my head don't expect it to work, but it could be a start.

from techan.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.