-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFunnelItemMetadata.vb
24 lines (21 loc) · 1.04 KB
/
FunnelItemMetadata.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Imports System
Imports System.ComponentModel
Imports DevExpress.DashboardCommon
Imports DevExpress.XtraCharts
Namespace DevExpress.DashboardWin.CustomItemExtension
<DisplayName("Funnel"), CustomItemDescription("Create a Funnel chart dashboard item and insert it into the dashboard." & vbLf & vbLf & "The Funnel chart visualizes the progressive reduction of data as it passes from one stage to another in a process or procedure."), CustomItemImage("FunnelItem.svg")>
Public Class FunnelItemMetadata
Inherits CustomItemMetadata
<DisplayName("Value"), EmptyDataItemPlaceholder("Value"), SupportColoring(DefaultColoringMode.None)>
Public Property Value() As Measure
Get
Return GetPropertyValue(Of Measure)()
End Get
Set(ByVal value As Measure)
SetPropertyValue(value)
End Set
End Property
<DisplayName("Arguments"), EmptyDataItemPlaceholder("Argument"), SupportColoring(DefaultColoringMode.Hue), SupportInteractivity>
Public ReadOnly Property Arguments() As New DimensionCollection()
End Class
End Namespace