How to make a Eazybi original estimate velocity chart

I understand you would like to calculate Original estimated hours for issues committed to a Sprint and for issues completed in a Sprint. To create such report, you may define new calculated measures to get similar measures as for Story Points.

For example, measure for committed original estimated hours could be built using existing measures Sprint issues committed and Original estimated hours.
A formula for “Sprint original estimated hours committed” may look like this.

Sum(
  Filter(
    -- iterate through issues commited to a Sprint
    Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
    [Measures].[Sprint issues committed] > 0
  ),
  -- original estimate for each commited issue
  ([Measures].[Original estimated hours],
  [Sprint].DefaultMember)
)

You may define a similar calculated measure for “Sprint original estimated hours completed” based on measures Sprint issues completed and Original estimated hours.

Best,
Zane / support@eazyBI.com