
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
A Gradio component that implements the vis.js Timeline visualization library, allowing you to create interactive timelines in your Gradio apps.
Resources:
pip install gradio_vistimeline
import gradio as gr
from gradio_vistimeline import VisTimeline
demo = gr.Interface(
lambda x: x,
VisTimeline(
value={
"items": [
{"content": "Item 1", "start": "2024-12-2", "end": "2024-12-10"},
{"content": "Item 2", "start": "2024-12-14"}
]
},
options={
"start": "2024-12-1",
"end": "2024-12-15",
"editable": True
}
),
"json"
)
if __name__ == "__main__":
demo.launch()
VisTimeline
The timeline accepts a value in the following format:
{
"groups": [
{
"id": "group_id",
"content": "Group Name" # Optional
}
],
"items": [
{
"content": "Item content",
"start": "2024-01-01", # ISO date string or Unix timestamp
"end": "2024-01-05", # Optional
"group": "group_id", # Optional
}
]
}
Or as a VisTimelineData object:
from gradio_vistimeline import VisTimelineGroup, VisTimelineItem, VisTimelineData
value = VisTimelineData(
groups=[
VisTimelineGroup(
id="group_id",
content="Group Name" # Optional
)
],
items=[
VisTimelineItem(
content="Item content",
start="2024-01-01", # ISO date string or Unix timestamp
end="2024-01-05", # Optional
group="group_id" # Optional
)
]
)
name | description |
---|---|
load | Triggered when the component is mounted for the first time |
change | Triggered when the timeline value changes through any means |
input | Triggered when a user directly modifies timeline items (add/remove/update) |
select | Triggered when clicking the timeline |
item_select | Triggered when items are selected or unselected |
The component accepts all configuration options supported by vis.js Timeline. Some commonly used options:
options = {
"editable": True, # Enable item editing
"multiselect": True, # Allow selecting multiple items
"showCurrentTime": True, # Show a marker for current time
"stack": True, # Stack overlapping items
"zoomable": True # Allow zooming the timeline
}
For a complete list of options, see the vis.js Timeline documentation.
Data Synchronization
VisTimeline(
value=value,
preserve_old_content_on_value_change=True # Default: False
)
Controls how the timeline updates their groups and items DataSets when the component value changes:
False
: Clears and reinitializes all DataSets to ensure perfect sync with the Gradio component valueTrue
: Merges new data with existing content (updates existing items, adds new ones, removes missing ones)Defaulted to false to ensure the value matches the visualization on the timeline.
Changing it to true reduces visual flicker when dragging items around. Desync is only a real risk in this mode when you edit item ID's or add/remove item properties of existing items.
JavaScript Integration
VisTimeline(
value=value,
elem_id="my-timeline" # Optional
)
When elem_id
is set, the timeline instance becomes available in JavaScript as window.visTimelineInstances["my-timeline"]
, allowing easy access through custom scripts.
Styling Items
The component provides pre-defined color classes matching Gradio's theme colors. Apply them by setting an item's className
:
item = {
"content": "Colored item",
"start": "2024-01-01",
"className": "color-primary-500" # Uses Gradio's primary-500 color
}
Available color classes follow the pattern:
color-primary-[50-950]
color-secondary-[50-950]
color-neutral-[50-950]
Custom styles can be applied by defining your own CSS classes.
FAQs
Gradio implementation for the vis.js Timeline visualization library
We found that gradio-vistimeline demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.