Wizard Templates

You can design wizard templates that help users create instances of a custom dashboard object—a dashboard, data source, indicator, KPI (key performance indicator), report, filter, or scorecard. By using your template, PerformancePoint Dashboard Designer users can create the object, set properties for it, and add it to the workspace.

Wizard templates consist of one or more wizard pages. You can create wizard pages by adding Windows Forms panels that inherit from System.Windows.Forms.UserControl. Then, you can edit them in the Microsoft Visual Studio forms designer.

To create a custom dashboard object in Dashboard Designer, you must implement a template class factory. To add custom properties to the object that your template creates, you can also implement the FiniteProgressPage class.

In This Section

Topic Description

How to: Implement a Template Class Factory

Describes how to implement a template class factory.

How to: Create a Dashboard Wizard Template

Describes a code example that implements the TemplateFactory class to create a wizard template for a dashboard.

How to: Create a Scorecard Wizard Template

Describes a code example that implements the TemplateFactory and FiniteProgressPage classes to create a wizard template for a scorecard.

How to: Create a KPI Wizard Template

Describes a code example that implements the TemplateFactory class to create a wizard template for a KPI.

How to: Create an Indicator Wizard Template

Describes a code example that implements the TemplateFactory class to create a wizard template for an indicator.

How to: Install a Wizard Template

Describes how to install your custom wizard template for development or for deployment.

See Also

Tasks

How to: Create Filter Designers
How to: Implement the DataSourceTemplateFactory Class

Concepts

How to: Create a Report Wizard Template