Coder Social home page Coder Social logo

Comments (3)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 28, 2024
This bug is not related to the data source library. It is a client issue.

Original comment by [email protected] on 22 Oct 2009 at 12:54

  • Changed state: Invalid

from google-visualization-java.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 28, 2024
[deleted comment]

from google-visualization-java.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 28, 2024
Like you, I also wanted a way to visualize "no data" - preferably by a gap in 
the line.  I found that with a little work, you can accomplish something like 
your second example.

Plug this into 
http://code.google.com/apis/ajax/playground/?type=visualization#annotated_time_l
ine:

  function drawVisualization() {
    var data = new google.visualization.DataTable();
    data.addColumn('date', 'Date');
    data.addColumn('number', 'Sold Pencils');
    data.addRows([
      [new Date(2008, 1, 1), 8],
      [new Date(2008, 1, 1), 9],
      [new Date(2008, 1, 2), 10],
      [new Date(2008, 1, 2), 0],
      [new Date(2008, 1, 3), 0],   
      [new Date(2008, 1, 3), 11],
      [new Date(2008, 1, 4), 12],   
      [new Date(2008, 1, 5), 13],    
      [new Date(2008, 1, 6), 14],    
    ]); 
    var annotatedtimeline = new google.visualization.AnnotatedTimeLine(
        document.getElementById('visualization'));
    annotatedtimeline.draw(data, {thickness: 3});
  }

And you get the result shown below.  Admittedly, it's not as simple as 
specifying a "null" or "undefined" value, but it can get the job done.

I posted this for the sake of anyone else who (like me) stumbles upon this 
issue while trying to figure out how to visualize "no data".

Original comment by [email protected] on 4 Jun 2011 at 8:17

Attachments:

from google-visualization-java.

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.