-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSunburstItemMetadata.vb
26 lines (24 loc) · 1.04 KB
/
SunburstItemMetadata.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
25
26
Imports DevExpress.DashboardCommon
Imports System.ComponentModel
Namespace DevExpress.DashboardWin.CustomItemExtension
<DisplayName("Sunburst"), CustomItemDescription("Create a Sunburst dashboard item and insert it into the dashboard." & vbLf & vbLf & "The Sunburst combines a TreeMap and a Pie chart to visualize hierarchical data in a circular layout."), CustomItemImage("SunburstCustomItem.svg")>
Public Class SunburstItemMetadata
Inherits CustomItemMetadata
Private ReadOnly _arguments As New DimensionCollection()
<DisplayName("Value"), EmptyDataItemPlaceholder("Value")>
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.None), SupportInteractivity>
Public ReadOnly Property Arguments() As DimensionCollection
Get
Return _arguments
End Get
End Property
End Class
End Namespace