Class
GanttViewBase

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public abstract class GanttViewBase : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseGanttViewBase

Derived Classes: GanttDayViewGanttMonthViewGanttWeekViewGanttYearView

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members ComponentBase.BuildRenderTree(RenderTreeBuilder)ComponentBase.OnInitializedAsync()ComponentBase.OnParametersSet()ComponentBase.OnParametersSetAsync()ComponentBase.StateHasChanged()ComponentBase.ShouldRender()ComponentBase.OnAfterRender(bool)ComponentBase.OnAfterRenderAsync(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)ComponentBase.SetParametersAsync(ParameterView)

Constructors

GanttViewBase()

Declaration

cs-api-definition
protected GanttViewBase()

Properties

RangeEnd

Determines the latest date that's shown in the view. It's rounded up to the nearest major time span for the view. If not set the view calculates it based on the Data.

Declaration

cs-api-definition
[Parameter]
public DateTime? RangeEnd { get; set; }

Property Value

DateTime?

RangeStart

Determines the earliest date that's shown in the view. It's rounded down to the nearest major time span for the view. If not set the view calculates it based on the Data.

Declaration

cs-api-definition
[Parameter]
public DateTime? RangeStart { get; set; }

Property Value

DateTime?

SlotWidth

Determines the width in pixels of each time slot.

Declaration

cs-api-definition
[Parameter]
public double SlotWidth { get; set; }

Property Value

double

Methods

Dispose()

Declaration

cs-api-definition
public void Dispose()

Implements IDisposable.Dispose()

OnInitialized()

Declaration

cs-api-definition
protected override void OnInitialized()

Overrides ComponentBase.OnInitialized()