@model TimelineSettingsViewModel @{ ViewData["Title"] = "Timeline Settings"; ViewData["ProjectSection"] = "Timeline"; var projectNavigation = new Project { ProjectID = Model.ProjectID, ProjectName = Model.ProjectName }; }

Timeline Settings

Configure timeline display

Choose which workspace sections PlotDirector loads and renders for this project. Filters and saved views still work separately.

@if (TempData["TimelineSettingsMessage"] is string message) {
@message
}

Sections

Workspace sections

Metric Shape

Timeline metrics

@Model.MetricOptions.Count metrics

These metrics appear on the timeline graph and Story Health metric shape for this project.

@if (!Model.MetricOptions.Any()) {

This project has no scene metrics yet.

Add default metrics
} else {
@foreach (var metric in Model.MetricOptions) { }
}
Back to timeline
@section Scripts { }