Giter Site home page Giter Site logo

Comments (5)

josdejong avatar josdejong commented on August 31, 2024

Yes that should work. When an item has both start and end date, it will be displayed as a range. You see an example of this in example 01_basic.html, where item 4 is a range.

from vis.

meghnasapre avatar meghnasapre commented on August 31, 2024

Yep the range works when the timeline doesn't have groups.
I tried to add groups to it (code below), and the ranges go away. I tried to add 'end' to the groups example too, and I see the same issue.
Any ideas?

// create a data set with groups
var names = ['John', 'Alston', 'Lee', 'Grant'];
var groups = new vis.DataSet();
for (var g = 0; g < groupCount; g++) {
  groups.add({ id: g, content: names[g] });
}
// // create visualization
var container = document.getElementById('visualization');
var options = {
  groupsOrder: 'content',
  orientation: 'top'
};
var items = [
  { id: 1, content: 'item 1', start: '2013-04-20', group: 0, type: 'box' },
  { id: 2, content: 'item 2', start: '2013-04-14', group: 1, type: 'box' },
  { id: 3, content: 'item 3', start: '2013-04-18', group: 2, type: 'box' },
  { id: 4, content: 'item 4', start: '2013-04-16', end: '2013-04-19', group: 3, type: 'box' },
  { id: 5, content: 'item 5', start: '2013-04-25', group: 0, type: 'box' },
  { id: 6, content: 'item 6', start: '2013-04-27', group: 1, type: 'box' }
];

var timeline = new vis.Timeline(container);
timeline.setOptions(options);
timeline.setGroups(groups);
timeline.setItems(items);
});

Thanks,
Meghna

from vis.

josdejong avatar josdejong commented on August 31, 2024

You're right. This is just a bug in the Timeline, will be fixed.

from vis.

josdejong avatar josdejong commented on August 31, 2024

I figured out that it is no bug... In your data you specify type: 'box' for every item. When you change this to type: 'range' or leave it out, things will work fine :D

from vis.

meghnasapre avatar meghnasapre commented on August 31, 2024

Ah you're right :) Super silly of me, thank you!

from vis.

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.