Available For Forecasting Page

lightning:availableForForecastingPage

Enables a component to be used in a Lightning Forecasting page.

For Use In

Lightning Experience

Use the lightning:availableForForecastingPage interface to make your component available for Lightning Forecasting pages only.

This example creates a “Hello World” component that’s available only for Lightning Forecasting pages.

1<aura:component implements="lightning:availableForForecastingPage" access="global">
2    <aura:attribute name="greeting" type="String" default="Hello" access="global" />
3    <aura:attribute name="subject" type="String" default="World" access="global" />
4
5    <div style="box">
6      <span class="greeting">{!v.greeting}</span>, {!v.subject}!
7    </div>
8</aura:component>

For more information, see Configure Components for Lightning Pages and the Lightning App Builder in the Lightning Aura Components Developer Guide.

No specifications to show