Skip to content

Commit e6a8b37

Browse files
committed
More changes
1 parent 18c32f7 commit e6a8b37

File tree

1 file changed

+72
-8
lines changed

1 file changed

+72
-8
lines changed

powerapps-docs/developer/model-driven-apps/understand-charts-underlying-data-chart-representation.md

Lines changed: 72 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,41 +102,105 @@ You can specify the presentation description XML string while you are creating a
102102

103103
The following table shows the methods and properties that are supported in Unified Interface:
104104

105-
## Chart
105+
### AxisX
106+
107+
Gets or sets the X-axis type of the series.
108+
109+
**Properties**
110+
111+
|Property Name| Description|
112+
|-------------|------------|
113+
|Enabled|Gets or sets a value that indicates whether an axis is enabled.|
114+
|LabelStyle Enabled|Gets or sets a flag that indicates whether the label is enabled.|
115+
|LabelStyle ForeColor|Gets or sets the color of the label.|
116+
|LabelStyle Format|Gets or sets the formatting string for the label text. More information: [Supported numeric format for charts](#supported-numeric-format-for-charts-in-unified-interface)|
117+
|LineColor|Gets or sets the line color of an axis.|
118+
|IsReversed|Gets or sets a flag which indicates whether the axis is reversed.|
119+
|MajorGrid Enabled|Gets or sets a flag that determines whether major or minor grid lines are enabled.|
120+
|MajorGrid LineColor|Gets or sets the line color of a grid.|
121+
|MajorTickMark Enabled|Need description|
122+
|MajorTickMark LineColor|Need description|
123+
|Title|Gets or sets the title of the axis.|
124+
|TitleForeColor|Gets or sets the text color of an axis title.|
125+
126+
### AxisY
127+
128+
Gets or sets the Y-axis type of the series.
129+
130+
**Properties**
131+
132+
|Property Name| Description|
133+
|-------------|------------|
134+
|AxisY2|Gets or sets an Axis object that represents the secondary Y-axis.|
135+
|Enabled|Gets or sets a value that indicates whether an axis is enabled.|
136+
|Interval|Gets or sets the interval of an axis.|
137+
|LabelStyle Enabled|Gets or sets a flag that indicates whether the label is enabled.|
138+
|LabelStyle ForeColor|Gets or sets the color of the label.|
139+
|LabelStyle Format|Gets or sets the formatting string for the label text. More information: [Supported numeric format for charts](#supported-numeric-format-for-charts-in-unified-interface)|
140+
|LineColor|Gets or sets the line color of an axis.|
141+
|MajorGrid Enabled|Gets or sets a flag that determines whether major or minor grid lines are enabled.|
142+
|MajorGrid LineColor|Gets or sets the line color of a grid.|
143+
|MajorTickMark Enabled|Need description|
144+
|MajorTickMark LineColor|Need description|
145+
|Maximum|Gets or sets the maximum value of an axis.|
146+
|Minimum|Gets or sets the minimum value of an axis.|
147+
|Title|Gets or sets the title of the axis.|
148+
|TitleForeColor|Gets or sets the text color of an axis title.|
149+
150+
### Chart
106151

107152
The root class for the charts.
108153

109-
### Properties
154+
**Properties**
110155

111156
|Property Name|Description|
112157
|-------------|------------|
113-
|PaletteCustomColor|Gets or sets an array of custom palette colors. It follows the priority as shown below: <br/> - Renders the color defined in the [Series](https://docs.microsoft.com/dotnet/api/system.web.ui.datavisualization.charting.series?view=netframework-4.8) node. <br/> - If the color pallet is specified, chart picks the color from the color pallet. <br/> - If none is specified, it picks up the default color pallet.|
158+
|PaletteCustomColor|Gets or sets an array of custom palette colors. It follows the priority as shown below: <br/> - Renders the color defined in the `Series` node. <br/> - If the color pallet is specified, chart picks the color from the color pallet. <br/> - If none is specified, it picks up the default color pallet.|
114159

115160
#### Example
116161

117162
```xml
118163
<Chart Palette="None" PaletteCustomColors="91, 151, 213; #4169E1, red, 127,97,142,206">
119164
```
120165

121-
## Legend
166+
### ChartArea
167+
168+
Represents a chart area on the chart image.
169+
170+
**Properties**
171+
172+
|Property Name| Description|
173+
|-------------|------------|
174+
|Area3DStyle Enable3D|Gets or sets a value that indicates whether the flag toggles the 3D on and off for a chart area.|
175+
176+
### Legend
122177

123178
Represents the legend for the chart image.
124179

125-
### Properties
180+
**Properties**
126181

127182
|Property Name| Description|
128183
|-------------|------------|
129184
|Enabled| Defines whether the legend is enabled. By default it is set to `True`.|
130185

131-
## Series
186+
### Series
132187

133188
Stores data points and series attributes.
134189

135-
### Properties
190+
**Properties**
136191

137192
|Property Name| Description|
138193
|-------------|------------|
139-
|ChartType| An enumeration value that indicates the chart type that is used to represent the series. The default value is Column.|
194+
|BorderColor|Gets or sets the border color of the data point.|
195+
|BorderWidth|Gets or sets the border width of the data point.|
196+
|ChartType| An enumeration value that indicates the chart type that is used to represent the series. The default value is Column. It supports the following chart types: <br/> - Column <br/> - StackedColumn <br/> - StackedColumn100 <br/> - Bar <br/> - StackedBar <br/> - StackedBar100 <br/> - Area <br/> - StackedArea <br/> - StackedArea100 <br/> - Line <br/> - Pie <br/> - Funnel <br/> - Tag <br/> - Doughnut <br/> - Point|
197+
|Color|Gets or sets the color of the data point. For funnel and pie charts, the color property defined in the series node is ignored, but picks the chart color from color palette.|
198+
|IsValueShownAsLabel|Gets or sets a flag that indicates whether to show the value of the data point on the label.|
199+
|IsVisibleInLegend|Gets or sets a flag that indicates whether the item is shown in the legend.|
200+
|LabelForeColor|Gets or sets the text color of the label.|
201+
|LabelFormat|Gets or sets the format of the data point label. More information: [Supported numeric format for charts](#supported-numeric-format-for-charts-in-unified-interface)|
202+
|LegendText|Gets or sets the text of the item in the legend. For funnel and pie charts, the legend displays each individual data point's value in a series. Instead of displaying the series name as a whole.|
203+
|YAxisType|Gets or sets the Y-axis type of a series. Only second Y-axis is supported, not second X-axis.|
140204

141205
### Supported numeric format for charts in Unified Interface
142206

0 commit comments

Comments
 (0)