Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Dashboard with Epics roadmap (gantt)

rleandro
Tera Contributor

Hello,

 

I'm trying to create a dashboard, where I can display a list of my planned Epics (planned start/end date), but most important the list, I want to also have a widget that shows the same list items in some sort of a gantt chart.

 

Has anyone tried such type of solution?

Any suggestions, hints?

 

Thanks in advance

4 REPLIES 4

NavinAgarwal
Mega Guru

Hi @rleandro ,

 

You can combine SPM (Strategic Portfolio Management) reporting with a Gantt visualization.

You can follow below approach:

 

  • Create the List Widget:

Go to Performance Analytics > Dashboards (or UI Builder if using Next Experience).
Create a new dashboard (e.g., Epic Planning Dashboard).

 

Add a List widget:

Data source: Table = rm_epic
Filter: planned_start_date IS NOT EMPTY and planned_end_date IS NOT EMPTY
Columns: Epic Number, Name, Planned Start, Planned End, State
Sort by: Planned Start Date

 

  • Create the Gantt Chart Widget:

ServiceNow has two main options:


Option A – Out-of-the-box SPM Gantt, if you have SPM (formerly PPM) installed:

Navigate to Gantt Chart module (e.g., Projects > Gantt).
Create a Gantt view for the rm_epic table:

Configure Start Date = planned_start_date
Configure End Date = planned_end_date
Group by Program or Portfolio (optional)

Save the Gantt view.

In your dashboard, add a Gantt Chart widget and point it to this view.


Option B – Custom Gantt with Report Designer if you don’t have SPM:

Go to Reports > Create New.
Select Type = Timeline (or Gantt if available).
Table = rm_epic.

Configure:

Start = planned_start_date
End = planned_end_date
Label = short_description or number

Save the report.
Add this report as a widget to your dashboard.


Combine in a Dashboard:

Place the List widget on the left (for quick scanning).
Place the Gantt widget on the right (for visual timeline).
Apply the same filter (e.g., state!=Closed and date range) to both widgets so they stay in sync.

 

If you found my response helpful, could you please mark it as ‘Accept as Solution’ and ‘Helpful’? This small action goes a long way in helping other community members find the right answers more easily and supports the community.

Hi, Navin.

Is this something you've used before?

I'm not able to see some of the menu options you suggested.

Timeline visualizations are not Gantt style.

NavinAgarwal
Mega Guru

Hi @rleandro ,

 

I have not used this but based on the knowledge and information I have you can use the Planning Console in ServiceNow, typically available under the Project Portfolio Management (PPM) module.

The Gantt chart is integrated into this console, displaying tasks and their dependencies. 

 

Reference Links:

Using Planning console - Legacy

Gantt chart

 

If you found my response helpful, could you please mark it as ‘Accept as Solution’ and ‘Helpful’? This small action goes a long way in helping other community members find the right answers more easily and supports the community.

The goal it to use this outside the scope of projects.

Thanks anyway.