diff --git a/samples/ifcolorconditions-function/assets/screenshotkpivalues.png b/samples/ifcolorconditions-function/assets/screenshotkpivalues.png
new file mode 100644
index 0000000..53a2285
Binary files /dev/null and b/samples/ifcolorconditions-function/assets/screenshotkpivalues.png differ
diff --git a/samples/ifcolorconditions-function/readme.md b/samples/ifcolorconditions-function/readme.md
new file mode 100644
index 0000000..58506d6
--- /dev/null
+++ b/samples/ifcolorconditions-function/readme.md
@@ -0,0 +1,156 @@
+# If Value/Text Color Conditions - KPI Usecase
+
+
+## Summary
+
+Short summary on functionality and used technologies.
+
+This PowerFX example shows how to leverage an IF statement, against Text or Values on the Fill property of a text label.
+This can of course be used for conditional fonts, font weight, combining with dynamic variables and many more.
+
+
+
+* [If](#If)
+* [Value](#Value)
+* [Text](#Text)
+* [Color](#Color)
+
+## Applies to
+
+* [Microsoft Power Fx](https://docs.microsoft.com/en-us/power-platform/power-fx/overview)
+
+## Compatibility
+
+
+
+## Solution
+
+Solution|Author(s)
+--------|---------
+Ifcolorconditions-function | [Author Name](Nathalie-:eenders) ([@NathLeenders](https://twitter.com/yourtwitterhandle))
+
+## Version history
+
+Version|Date|Comments
+-------|----|--------
+1.0|March 30, 2023|Initial release
+
+
+## Prerequisites
+
+No pre requisities needed for this app.
+
+## Minimal Path to Awesome
+
+* [Download](solution\KPIUsecases.msapp) the `.msapp` from the `solution` folder
+* Use the `.msapp` file using **File** > **Open** > **Browse** within Power Apps Studio.
+
+
+## Using the Source Code
+
+ You can also use the [Power Apps Source Code tool](https://github.com/microsoft/PowerApps-Language-Tooling) to the code using these steps:
+* Clone the repository to a local drive
+* Pack the source files back into `.msapp` file:
+ * [Power Apps Tooling Usage](https://github.com/microsoft/PowerApps-Language-Tooling)
+* Use the `.msapp` file using **File** > **Open** > **Browse** in Power Apps Studio.
+
+## Features
+
+Description of the sample with possible additional details than in short summary.
+This sample illustrates the following Power Fx concepts:
+
+* If Statement with 2, and 3 conditions
+* Value functions
+* Text function
+* Using "" for string/text wrapping
+
+
+
+## Functions
+
+
+### [Color]
+
+Get colors for the fill Property, without using RGBA codes.
+
+### [If]
+
+If it matches your condition, followup with true or false actions/further functions.
+
+### [Text]
+
+Recognise the parameter as text (to use for choice columns, or converting other formats to text)
+
+### [Value]
+
+Recognise the parameter as values (to use for currency, numbers, or converting other formats to values)
+
+#### Syntax
+
+
+```excel
+If(Value('KPI Value 1 Text 1'.Text)<20,Color.Green,Color.Red)
+```
+
+
+Parameter | Description | Required | Type
+---|---|---|--
+KPI Value 1 Text 1 |Text label holding the number/value| Yes |Value
+
+#### Output
+
+If the value is less than 20, make green, otherwise make red.
+
+#### Syntax
+
+
+```excel
+If(Value('KPI Value Text 2'.Text)<20,Color.Green,If(Value('KPI Value Text 2'.Text) >=20 And Value('KPI Value Text 2'.Text) <=40, Color.Orange,Color.Red))
+```
+
+Parameter | Description | Required | Type
+---|---|---|--
+KPI Value Text 2'.Text |Text label holding the value| Yes | Value
+
+
+#### Output
+
+If the value is below 20, make green. Between 20 and 39, make orange. 40 equal and larger make red.
+
+
+#### Syntax
+
+
+```excel
+If(Text('KPI Text.Text) =Resolved within same day,Color.Green,Color.Red)
+```
+
+
+Parameter | Description | Required | Type
+---|---|---|--
+KPI Text.Text |Text label holding the text| Yes | Text
+
+
+
+#### Output
+
+This function enables colors based on whether it's Resolved within same day. It's hardcoded to this text, but you can use variables.
+
+
+## Disclaimer
+
+**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.**
+
+## Help
+
+> Note: don't worry about this section, we'll update the links.
+
+We do not support samples, but we this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.
+
+If you encounter any issues while using this sample, [create a new issue](https://github.com/pnp/powerfx-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=bug-report.yml&sample=YOUR-SOLUTION-NAME&authors=@YOURGITHUBUSERNAME&title=YOUR-SOLUTION-NAME%20-%20).
+
+For questions regarding this sample, [create a new question](https://github.com/pnp/powerfx-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=question.yml&sample=YOUR-SOLUTION-NAME&authors=@YOURGITHUBUSERNAME&title=YOUR-SOLUTION-NAME%20-%20).
+
+Finally, if you have an idea for improvement, [make a suggestion](https://github.com/pnp/powerfx-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=suggestion.yml&sample=YOUR-SOLUTION-NAME&authors=@YOURGITHUBUSERNAME&title=YOUR-SOLUTION-NAME%20-%20).
+
+
diff --git a/samples/ifcolorconditions-function/solution/solution.zip b/samples/ifcolorconditions-function/solution/solution.zip
new file mode 100644
index 0000000..d0cefe4
Binary files /dev/null and b/samples/ifcolorconditions-function/solution/solution.zip differ
diff --git a/samples/ifcolorconditions-function/sourcecode/.gitignore b/samples/ifcolorconditions-function/sourcecode/.gitignore
new file mode 100644
index 0000000..717973a
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/.gitignore
@@ -0,0 +1,8 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# msbuild output directories
+/bin
+/obj
+
+# MSBuild Binary and Structured Log
+*.binlog
diff --git a/samples/ifcolorconditions-function/sourcecode/KPI.cdsproj b/samples/ifcolorconditions-function/sourcecode/KPI.cdsproj
new file mode 100644
index 0000000..b517783
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/KPI.cdsproj
@@ -0,0 +1,49 @@
+
+
+
+ $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\PowerApps
+
+
+
+
+
+
+ a0003252-9093-423c-be24-46bd229e11c7
+ v4.6.2
+
+ net462
+ PackageReference
+ src
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PreserveNewest
+
+
+
+
+
+
+
diff --git a/samples/ifcolorconditions-function/sourcecode/readme b/samples/ifcolorconditions-function/sourcecode/readme
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/readme
@@ -0,0 +1 @@
+
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/crc69_kpiusecases_d7e01.meta.xml b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/crc69_kpiusecases_d7e01.meta.xml
new file mode 100644
index 0000000..0a7bdf6
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/crc69_kpiusecases_d7e01.meta.xml
@@ -0,0 +1,31 @@
+
+
+ crc69_kpiusecases_d7e01
+ 2023-03-29T15:16:18Z
+ Ready
+ 3.23032.12.0
+ 3.23032.12.0
+ {"primaryDeviceWidth":"1366","primaryDeviceHeight":"768","supportsPortrait":"true","supportsLandscape":"true","primaryFormFactor":"Tablet","publisherVersion":"3.23032.12","minimumRequiredApiVersion":"2.2.0","hasComponent":"false","hasUnlockedComponent":"false","isUnifiedRootApp":"false","sienaVersion":"20230329T151618Z-3.23032.12.0"}
+ 0
+
+ RGBA(0,176,240,1)
+ KPIUsecases
+
+
+
+ []
+ {}
+ {}
+ []
+ []
+ 1
+ 0
+ 0
+ 0
+
+ 1.0
+ {"cdsdependencies":[]}
+ 1
+ /CanvasApps/crc69_kpiusecases_d7e01_BackgroundImageUri
+ /CanvasApps/crc69_kpiusecases_d7e01_DocumentUri.msapp
+
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/crc69_kpiusecases_d7e01_BackgroundImageUri b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/crc69_kpiusecases_d7e01_BackgroundImageUri
new file mode 100644
index 0000000..c67f006
Binary files /dev/null and b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/crc69_kpiusecases_d7e01_BackgroundImageUri differ
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/crc69_kpiusecases_d7e01_DocumentUri.msapp b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/crc69_kpiusecases_d7e01_DocumentUri.msapp
new file mode 100644
index 0000000..5ed1817
Binary files /dev/null and b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/crc69_kpiusecases_d7e01_DocumentUri.msapp differ
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/CanvasManifest.json b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/CanvasManifest.json
new file mode 100644
index 0000000..7e585d8
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/CanvasManifest.json
@@ -0,0 +1,121 @@
+{
+ "FormatVersion": "0.24",
+ "Header": {
+ "DocVersion": "1.330",
+ "MinVersionToLoad": "1.327",
+ "MSAppStructureVersion": "2.0"
+ },
+ "Properties": {
+ "AppCreationSource": "AppFromScratch",
+ "AppDescription": "",
+ "AppPreviewFlagsMap": {
+ "aibuilderserviceenrollment": false,
+ "allowmultiplescreensincanvaspages": false,
+ "appinsightserrortracing": false,
+ "appinstrumentationcorrelationtracing": false,
+ "autocreateenvironmentvariables": false,
+ "backfromhostaction": false,
+ "behaviorpropertyui": false,
+ "blockmovingcontrol": true,
+ "cdsdataformatting": false,
+ "classiccontrols": false,
+ "consistentreturnschemafortabularfunctions": true,
+ "copyandmerge": false,
+ "datatablev2control": true,
+ "dataverseactionsenabled": false,
+ "delaycontrolrendering": true,
+ "delayloadscreens": true,
+ "disablecdsfileandlargeimage": false,
+ "dynamicschema": false,
+ "enableappembeddingux": false,
+ "enablechatbotfeature": false,
+ "enablecomponentnamemaps": false,
+ "enablecomponentscopeoldbehavior": false,
+ "enablecopilotcontrol": false,
+ "enableeditcacherefreshfrequency": false,
+ "enableexcelonlinebusinessv2connector": true,
+ "enableideaspanel": true,
+ "enablelegacybarcodescanner": false,
+ "enableonstart": true,
+ "enableonstartnavigate": false,
+ "enablepcfmoderndatasets": true,
+ "enablepowerautomatepane": true,
+ "enablerowscopeonetonexpand": false,
+ "enablerpawarecomponentdependency": true,
+ "enablerulespanel": false,
+ "enableruntimepolicies": false,
+ "enablesaveloadcleardataonweb": false,
+ "enhanceddelegation": true,
+ "enhancedgalleryinitialization": true,
+ "errorhandling": true,
+ "excelcompatibility": false,
+ "expandedsavedatasupport": true,
+ "exportimportcomponents2": true,
+ "externalmessage": false,
+ "fluentv9controls": true,
+ "formuladataprefetch": true,
+ "formularepair": true,
+ "generatedebugpublishedapp": false,
+ "herocontrols": false,
+ "improvedmediacapture": false,
+ "improvedtabstopbehavior": false,
+ "keeprecentscreensloaded": false,
+ "longlivingcache": false,
+ "namedformulas": false,
+ "nativecdsexperimental": true,
+ "optimizedforteamsmeeting": false,
+ "packagemodernruntime": false,
+ "parallelcodegen": false,
+ "pdffunction": false,
+ "projectionmapping": true,
+ "reactformulabar": false,
+ "reliableconcurrent": true,
+ "reverttooldpowerautomate": false,
+ "rtlinstudiopreview": false,
+ "rtlsupport": false,
+ "supportcolumnnamesasidentifiers": false,
+ "tabledoesntwraprecords": true,
+ "untypedobject": false,
+ "usedisplaynamemetadata": true,
+ "useenforcesavedatalimits": true,
+ "useexperimentalcdsconnector": true,
+ "useexperimentalsqlconnector": true,
+ "useguiddatatypes": true,
+ "usenonblockingonstartrule": true,
+ "webbarcodescanner": false,
+ "zeroalltabindexes": true
+ },
+ "Author": "",
+ "ContainsThirdPartyPcfControls": false,
+ "DefaultConnectedDataSourceMaxGetRowsCount": 500,
+ "DocumentAppType": "DesktopOrTablet",
+ "DocumentLayoutHeight": 768,
+ "DocumentLayoutLockOrientation": false,
+ "DocumentLayoutMaintainAspectRatio": true,
+ "DocumentLayoutOrientation": "landscape",
+ "DocumentLayoutScaleToFit": true,
+ "DocumentLayoutWidth": 1366,
+ "DocumentType": "App",
+ "EnableInstrumentation": false,
+ "FileID": "45320f72-d3f2-44ad-8af9-2771b8b0f7d7",
+ "Id": "45320f72-d3f2-44ad-8af9-2771b8b0f7d7",
+ "InstrumentationKey": "",
+ "LocalDatabaseReferences": "{}",
+ "Name": "KPIUsecases",
+ "OriginatingVersion": "1.330"
+ },
+ "PublishInfo": {
+ "AppName": "KPIUsecases",
+ "BackgroundColor": "RGBA(0,176,240,1)",
+ "IconColor": "RGBA(255,255,255,1)",
+ "IconName": "Edit",
+ "LogoFileName": "",
+ "PublishDataLocally": false,
+ "PublishResourcesLocally": false,
+ "PublishTarget": "player",
+ "UserLocale": "en-US"
+ },
+ "ScreenOrder": [
+ "Screen1"
+ ]
+}
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/ComponentReferences.json b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/ComponentReferences.json
new file mode 100644
index 0000000..0637a08
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/ComponentReferences.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Connections/Connections.json b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Connections/Connections.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Connections/Connections.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/ControlTemplates.json b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/ControlTemplates.json
new file mode 100644
index 0000000..c52298f
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/ControlTemplates.json
@@ -0,0 +1,82 @@
+{
+ "appinfo": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/appinfo",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "appinfo",
+ "OverridableProperties": {},
+ "Version": "1.0"
+ },
+ "button": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/button",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "button",
+ "OverridableProperties": {},
+ "Version": "2.2.0"
+ },
+ "group": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/group",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "group",
+ "OverridableProperties": {},
+ "Version": "1"
+ },
+ "groupContainer": {
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/groupContainer",
+ "IsComponentTemplate": false,
+ "IsPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "groupContainer",
+ "Version": "1.0"
+ },
+ "label": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/label",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "label",
+ "OverridableProperties": {},
+ "Version": "2.5.1"
+ },
+ "screen": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/screen",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "screen",
+ "OverridableProperties": {},
+ "Version": "1.0"
+ }
+}
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Entropy/AppCheckerResult.sarif b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Entropy/AppCheckerResult.sarif
new file mode 100644
index 0000000..ea8b7d4
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Entropy/AppCheckerResult.sarif
@@ -0,0 +1,71 @@
+{
+ "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.4.json",
+ "runs": [
+ {
+ "columnKind": "utf16CodeUnits",
+ "invocations": [
+ {
+ "executionSuccessful": true
+ }
+ ],
+ "results": [
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "module": "Screen1",
+ "type": "Screen1"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Low"
+ },
+ "ruleId": "acc-ReadableScreenNameNeeded",
+ "ruleIndex": 0
+ }
+ ],
+ "tool": {
+ "driver": {
+ "fullName": "PowerApps app checker",
+ "name": "PowerApps app checker",
+ "rules": [
+ {
+ "id": "acc-ReadableScreenNameNeeded",
+ "messageStrings": {
+ "issue": {
+ "text": "Revise screen name"
+ }
+ },
+ "properties": {
+ "componentType": "app",
+ "howToFix": [
+ "Give the screen a title that describes what's on the screen or what it's used for."
+ ],
+ "level": "Low",
+ "primaryCategory": "accessibility",
+ "whyFix": "People who are blind, have low vision, or a reading disability rely on screen titles to navigate using the screen reader. "
+ }
+ }
+ ],
+ "version": "1.330"
+ }
+ }
+ }
+ ],
+ "version": "2.1.0"
+}
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Entropy/Entropy.json b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Entropy/Entropy.json
new file mode 100644
index 0000000..de48a8d
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Entropy/Entropy.json
@@ -0,0 +1,169 @@
+{
+ "ComponentIndexes": {},
+ "ControlUniqueGuids": {},
+ "ControlUniqueIds": {
+ "App": 1,
+ "Header": 20,
+ "Headerbar": 10,
+ "HeaderText": 9,
+ "KPI above 20 Text 1": 6,
+ "KPI Above 40 text 2": 16,
+ "KPI Below 20 text 1": 5,
+ "KPI Below 20 text 2": 12,
+ "KPI Middle text 2": 13,
+ "KPI Text 3-1": 29,
+ "KPI Text 3-2": 30,
+ "KPI Text3-Text1": 27,
+ "KPI Value 1 Text 1": 7,
+ "KPI Value 2 Text 1": 8,
+ "KPI Value 2 text 2": 15,
+ "KPI Value 3 text 2": 17,
+ "KPI Value Text 2": 14,
+ "KPI1": 35,
+ "KPI2": 34,
+ "Label3": 21,
+ "Label4": 22,
+ "Label5": 23,
+ "Label5_1": 24,
+ "Label6": 25,
+ "Label7": 32,
+ "Sales per month text": 4,
+ "Sales per month text 2": 11,
+ "Sales per month text_3": 26,
+ "Screen1": 3,
+ "Text Example group": 36,
+ "TextPortionLabel": 33
+ },
+ "FunctionParamsInvariantScripts": {},
+ "FunctionParamsInvariantScriptsOnInstances": {},
+ "HeaderLastSavedDateTimeUTC": "03/29/2023 15:16:18",
+ "IsLegacyComponentAllowGlobalScopeCase": false,
+ "LocalConnectionIDReferences": {},
+ "LocalDatabaseReferencesAsEmpty": false,
+ "LocalResourceFileNames": {},
+ "LocalResourceRootPaths": {},
+ "OrderComponentMetadata": {},
+ "OrderComponentTemplate": {},
+ "OrderDataSource": {},
+ "OrderGroupControls": {
+ "Header": {
+ "Headerbar": 0,
+ "HeaderText": 1
+ },
+ "KPI1": {
+ "KPI above 20 Text 1": 4,
+ "KPI Below 20 text 1": 3,
+ "KPI Value 1 Text 1": 5,
+ "KPI Value 2 Text 1": 6,
+ "Label3": 0,
+ "Label4": 1,
+ "Sales per month text": 2
+ },
+ "KPI2": {
+ "KPI Above 40 text 2": 8,
+ "KPI Below 20 text 2": 4,
+ "KPI Middle text 2": 5,
+ "KPI Value 2 text 2": 7,
+ "KPI Value 3 text 2": 9,
+ "KPI Value Text 2": 6,
+ "Label5": 0,
+ "Label5_1": 1,
+ "Label6": 2,
+ "Sales per month text 2": 3
+ },
+ "Text Example group": {
+ "KPI Text 3-1": 4,
+ "KPI Text 3-2": 5,
+ "KPI Text3-Text1": 3,
+ "Label7": 0,
+ "Sales per month text_3": 2,
+ "TextPortionLabel": 1
+ }
+ },
+ "OrderPcfTemplate": {},
+ "OrderTemplate": {},
+ "OrderXMLTemplate": {
+ "button": 0,
+ "label": 1
+ },
+ "OverridablePropertiesEntry": {
+ "App": {},
+ "Header": {},
+ "Headerbar": {},
+ "HeaderText": {},
+ "KPI above 20 Text 1": {},
+ "KPI Above 40 text 2": {},
+ "KPI Below 20 text 1": {},
+ "KPI Below 20 text 2": {},
+ "KPI Middle text 2": {},
+ "KPI Text 3-1": {},
+ "KPI Text 3-2": {},
+ "KPI Text3-Text1": {},
+ "KPI Value 1 Text 1": {},
+ "KPI Value 2 Text 1": {},
+ "KPI Value 2 text 2": {},
+ "KPI Value 3 text 2": {},
+ "KPI Value Text 2": {},
+ "KPI1": {},
+ "KPI2": {},
+ "Label3": {},
+ "Label4": {},
+ "Label5": {},
+ "Label5_1": {},
+ "Label6": {},
+ "Label7": {},
+ "Sales per month text": {},
+ "Sales per month text 2": {},
+ "Sales per month text_3": {},
+ "Screen1": {},
+ "Text Example group": {},
+ "TextPortionLabel": {}
+ },
+ "PCFDynamicSchemaForIRRetrievalEntry": {},
+ "PCFTemplateEntry": {},
+ "PublishOrderIndices": {
+ "App": 0,
+ "Header": 1,
+ "Headerbar": 0,
+ "HeaderText": 2,
+ "KPI above 20 Text 1": 8,
+ "KPI Above 40 text 2": 20,
+ "KPI Below 20 text 1": 5,
+ "KPI Below 20 text 2": 14,
+ "KPI Middle text 2": 17,
+ "KPI Text 3-1": 24,
+ "KPI Text 3-2": 28,
+ "KPI Text3-Text1": 26,
+ "KPI Value 1 Text 1": 6,
+ "KPI Value 2 Text 1": 9,
+ "KPI Value 2 text 2": 18,
+ "KPI Value 3 text 2": 21,
+ "KPI Value Text 2": 15,
+ "KPI1": 4,
+ "KPI2": 11,
+ "Label3": 10,
+ "Label4": 7,
+ "Label5": 12,
+ "Label5_1": 16,
+ "Label6": 19,
+ "Label7": 27,
+ "Sales per month text": 3,
+ "Sales per month text 2": 13,
+ "Sales per month text_3": 25,
+ "Screen1": 0,
+ "Text Example group": 22,
+ "TextPortionLabel": 23
+ },
+ "ResourcesJsonIndices": {},
+ "RuleScreenIdWithoutScreen": {},
+ "TemplateVersions": {},
+ "VolatileProperties": {
+ "AnalysisLoadTime": 0.014904000000000001,
+ "ControlCount": {
+ "group": 1,
+ "label": 18
+ },
+ "ErrorCount": 0
+ },
+ "WasLocalDatabaseReferencesEmpty": true
+}
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Entropy/checksum.json b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Entropy/checksum.json
new file mode 100644
index 0000000..026b597
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Entropy/checksum.json
@@ -0,0 +1,32 @@
+{
+ "ClientBuildDetails": {
+ "CommitHash": "45c3260c720cd2828d3849c2252f73f595758d68",
+ "IsLocalBuild": false
+ },
+ "ClientPerFileChecksums": {
+ "AppCheckerResult.sarif": "C8_T16TQOChSBNaf+QcC9K/7vtNIIUg6bFcGAjwMTLIx1w=",
+ "Controls\\1.json": "C8_DxuHHiPeyyuFhYCYipObPGR/XuUWE04niIJno/Jsb9k=",
+ "Controls\\3.json": "C8_2zdM1Gmc57hFQ4KLIQxQXIrTAF4inD1Ic5f6UfA2j4w=",
+ "Header.json": "C8_/Zs2aKpnEA8IYQ5wnfzRASuAzkV0SM5NAsLvyt0N4qU=",
+ "Properties.json": "C8_2UY38OwEVBurLfgxD5Vmx5n5vbcURdXUTIgHXA3dxjY=",
+ "References\\DataSources.json": "C8_1Mz8z/quQND5c2f8m0mw1Mjdi+ggLSDhPUoMPaSWpDQ=",
+ "References\\Resources.json": "C8_o8YVeUoBOQZMN+H7s7E9s1TDtWtrOeuiBA3wJXAjo2Y=",
+ "References\\Templates.json": "C8_ieBjZz687irVww7ob+LOE/BJtlseYNa1J+N8whDawv0=",
+ "References\\Themes.json": "C8_1xPnpQ0LkKZHnGg2xVHARF7T1GcoUe2XFo8AFSZB9LE=",
+ "Resources\\PublishInfo.json": "C8_8KCjkIOflXPq/dA3AoMc0so5Q+DPHpmsyS7faoxewmQ="
+ },
+ "ClientStampedChecksum": "C8_9PwSPK3jjwEfEx2W93tKxiNeBoyI9gh0+rm2g0m/rBk=",
+ "ServerPerFileChecksums": {
+ "AppCheckerResult.sarif": "C8_T16TQOChSBNaf+QcC9K/7vtNIIUg6bFcGAjwMTLIx1w=",
+ "Controls\\1.json": "C8_DxuHHiPeyyuFhYCYipObPGR/XuUWE04niIJno/Jsb9k=",
+ "Controls\\3.json": "C8_2zdM1Gmc57hFQ4KLIQxQXIrTAF4inD1Ic5f6UfA2j4w=",
+ "Header.json": "C8_/Zs2aKpnEA8IYQ5wnfzRASuAzkV0SM5NAsLvyt0N4qU=",
+ "Properties.json": "C8_2UY38OwEVBurLfgxD5Vmx5n5vbcURdXUTIgHXA3dxjY=",
+ "References\\DataSources.json": "C8_1Mz8z/quQND5c2f8m0mw1Mjdi+ggLSDhPUoMPaSWpDQ=",
+ "References\\Resources.json": "C8_o8YVeUoBOQZMN+H7s7E9s1TDtWtrOeuiBA3wJXAjo2Y=",
+ "References\\Templates.json": "C8_ieBjZz687irVww7ob+LOE/BJtlseYNa1J+N8whDawv0=",
+ "References\\Themes.json": "C8_1xPnpQ0LkKZHnGg2xVHARF7T1GcoUe2XFo8AFSZB9LE=",
+ "Resources\\PublishInfo.json": "C8_8KCjkIOflXPq/dA3AoMc0so5Q+DPHpmsyS7faoxewmQ="
+ },
+ "ServerStampedChecksum": "C8_9PwSPK3jjwEfEx2W93tKxiNeBoyI9gh0+rm2g0m/rBk="
+}
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/App.fx.yaml b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/App.fx.yaml
new file mode 100644
index 0000000..cb951ce
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/App.fx.yaml
@@ -0,0 +1,3 @@
+App As appinfo:
+ BackEnabled: =false
+
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/EditorState/App.editorstate.json b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/EditorState/App.editorstate.json
new file mode 100644
index 0000000..eba49c9
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/EditorState/App.editorstate.json
@@ -0,0 +1,55 @@
+{
+ "ControlStates": {
+ "App": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "MinScreenHeight",
+ "MinScreenWidth",
+ "ConfirmExit",
+ "SizeBreakpoints",
+ "BackEnabled"
+ ],
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": true,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "App",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "ConfirmExit",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "BackEnabled",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MinScreenHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MinScreenWidth",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "ConstantData",
+ "PropertyName": "SizeBreakpoints",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ }
+ },
+ "TopParentName": "App"
+}
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/EditorState/Screen1.editorstate.json b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/EditorState/Screen1.editorstate.json
new file mode 100644
index 0000000..cf7d75c
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/EditorState/Screen1.editorstate.json
@@ -0,0 +1,7083 @@
+{
+ "ControlStates": {
+ "Header": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": true,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Header",
+ "ParentIndex": 27,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "Headerbar": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "DisplayMode",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(56, 96, 178, 1)",
+ "InvariantPropertyName": "Fill",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex",
+ "RadiusTopLeft",
+ "RadiusTopRight",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Headerbar",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultButtonStyle",
+ "Type": "ControlInfo"
+ },
+ "HeaderText": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Align",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Size",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "HeaderText",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI above 20 Text 1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI above 20 Text 1",
+ "ParentIndex": 6,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Above 40 text 2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Above 40 text 2",
+ "ParentIndex": 17,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Below 20 text 1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Below 20 text 1",
+ "ParentIndex": 3,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Below 20 text 2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Below 20 text 2",
+ "ParentIndex": 11,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Middle text 2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Middle text 2",
+ "ParentIndex": 14,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Text 3-1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 1)",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 0)",
+ "InvariantPropertyName": "Fill",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Align",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderThickness",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Text 3-1",
+ "ParentIndex": 20,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Text 3-2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 1)",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 0)",
+ "InvariantPropertyName": "Fill",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Align",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderThickness",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Text 3-2",
+ "ParentIndex": 24,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Text3-Text1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Text3-Text1",
+ "ParentIndex": 22,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Value 1 Text 1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 1)",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 0)",
+ "InvariantPropertyName": "Fill",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Align",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderThickness",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Value 1 Text 1",
+ "ParentIndex": 4,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Value 2 Text 1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 1)",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 0)",
+ "InvariantPropertyName": "Fill",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Align",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderThickness",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Value 2 Text 1",
+ "ParentIndex": 7,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Value 2 text 2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 1)",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 0)",
+ "InvariantPropertyName": "Fill",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Align",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderThickness",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Value 2 text 2",
+ "ParentIndex": 15,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Value 3 text 2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 1)",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 0)",
+ "InvariantPropertyName": "Fill",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Align",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderThickness",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Value 3 text 2",
+ "ParentIndex": 18,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI Value Text 2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 1)",
+ "InvariantPropertyName": "Color",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "RGBA(0, 0, 0, 0)",
+ "InvariantPropertyName": "Fill",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Align",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BorderThickness",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI Value Text 2",
+ "ParentIndex": 12,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "KPI1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": true,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI1",
+ "ParentIndex": 26,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "KPI2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": true,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "KPI2",
+ "ParentIndex": 25,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "Label3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label3",
+ "ParentIndex": 8,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Label4": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label4",
+ "ParentIndex": 5,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Label5": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label5",
+ "ParentIndex": 9,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Label5_1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label5_1",
+ "ParentIndex": 13,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Label6": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label6",
+ "ParentIndex": 16,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Label7": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Label7",
+ "ParentIndex": 23,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Sales per month text": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Sales per month text",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Sales per month text 2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Sales per month text 2",
+ "ParentIndex": 10,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Sales per month text_3": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ "FontWeight",
+ "Align",
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Sales per month text_3",
+ "ParentIndex": 21,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ },
+ "Screen1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "ImagePosition",
+ "Height",
+ "Width",
+ "Size",
+ "Orientation",
+ "LoadingSpinner",
+ "LoadingSpinnerColor"
+ ],
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Screen1",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ImagePosition",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Orientation",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LoadingSpinner",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LoadingSpinnerColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultScreenStyle",
+ "Type": "ControlInfo"
+ },
+ "Text Example group": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": true,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Text Example group",
+ "ParentIndex": 28,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "TextPortionLabel": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Live",
+ "Overflow",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Role",
+ "Color",
+ "DisabledColor",
+ "PressedColor",
+ "HoverColor",
+ "BorderColor",
+ "DisabledBorderColor",
+ "PressedBorderColor",
+ "HoverBorderColor",
+ "BorderStyle",
+ "FocusedBorderColor",
+ "Fill",
+ "DisabledFill",
+ "PressedFill",
+ "HoverFill",
+ "Font",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontWeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Align",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "VerticalAlign",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ "LineHeight",
+ "BorderThickness",
+ "FocusedBorderThickness",
+ "Size",
+ "Italic",
+ "Underline",
+ "Strikethrough",
+ "PaddingTop",
+ "PaddingRight",
+ "PaddingBottom",
+ "PaddingLeft"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "TextPortionLabel",
+ "ParentIndex": 19,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Role",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Live",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderThickness",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LineHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Strikethrough",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Underline",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Italic",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Align",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FontWeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Font",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisabledColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Color",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Overflow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedFill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "FocusedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedBorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "HoverColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PressedColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultLabelStyle",
+ "Type": "ControlInfo"
+ }
+ },
+ "TopParentName": "Screen1"
+}
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/Screen1.fx.yaml b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/Screen1.fx.yaml
new file mode 100644
index 0000000..f74e59a
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/Screen1.fx.yaml
@@ -0,0 +1,242 @@
+Screen1 As screen:
+
+ Header As group:
+ Height: =5
+ Width: =5
+ X: =60
+ Y: =60
+ ZIndex: =15
+
+ Headerbar As button:
+ Fill: =RGBA(56, 96, 178, 0.5)
+ Height: =69
+ Text: =""
+ Width: =1366
+ ZIndex: =1
+
+ HeaderText As label:
+ Align: =Align.Center
+ Size: =25
+ Text: ="Colors based on Values or text - KPI Edition"
+ Width: =1366
+ Y: =15
+ ZIndex: =7
+
+ KPI2 As group:
+ Height: =5
+ Width: =5
+ X: =60
+ Y: =60
+ ZIndex: =27
+
+ "'Sales per month text 2' As label":
+ Text: ="Sales per month"
+ X: =40
+ Y: =249
+ ZIndex: =8
+
+ "'KPI Below 20 text 2' As label":
+ Text: ="KPI Below 20 - OK"
+ Width: =248
+ X: =219
+ Y: =249
+ ZIndex: =9
+
+ "'KPI Middle text 2' As label":
+ Text: ="KPI between 20 and 40"
+ Width: =248
+ X: =219
+ Y: =328
+ ZIndex: =10
+
+ "'KPI Value Text 2' As label":
+ Align: =Align.Center
+ Color: =Color.White
+ Fill: =If(Value('KPI Value Text 2'.Text)<20,Color.Green,If(Value('KPI Value Text 2'.Text) >=20 And Value('KPI Value Text 2'.Text) <=40, Color.Orange,Color.Red))
+ FontWeight: =FontWeight.Lighter
+ Text: ="4"
+ Width: =248
+ X: =512
+ Y: =249
+ ZIndex: =11
+
+ "'KPI Value 2 text 2' As label":
+ Align: =Align.Center
+ Color: =Color.White
+ Fill: =If(Value('KPI Value 2 text 2'.Text)<20,Color.Green,If(Value('KPI Value 2 text 2'.Text) >=20 And Value('KPI Value 2 text 2'.Text) <=40, Color.Orange,Color.Red))
+ FontWeight: =FontWeight.Lighter
+ Text: |-
+ ="32
+ "
+ Width: =248
+ X: =512
+ Y: =328
+ ZIndex: =12
+
+ "'KPI Above 40 text 2' As label":
+ Text: ="KPI above 40"
+ Width: =248
+ X: =219
+ Y: =420
+ ZIndex: =13
+
+ "'KPI Value 3 text 2' As label":
+ Align: =Align.Center
+ Color: =Color.White
+ Fill: =If(Value('KPI Value 3 text 2'.Text)<20,Color.Green,If(Value('KPI Value 3 text 2'.Text) >=20 And Value('KPI Value 3 text 2'.Text) <=40, Color.Orange,Color.Red))
+ FontWeight: =FontWeight.Lighter
+ Text: |-
+ ="64
+ "
+ Width: =248
+ X: =512
+ Y: =420
+ ZIndex: =14
+
+ Label5 As label:
+ Height: =82
+ Text: ="If(Value('KPI Value Text 2'.Text)<20,Color.Green,If(Value('KPI Value Text 2'.Text) >=20 And Value('KPI Value Text 2'.Text) <=40, Color.Orange,Color.Red))"
+ Width: =557
+ X: =792
+ Y: =235
+ ZIndex: =17
+
+ Label5_1 As label:
+ Height: =72
+ Text: ="If(Value('KPI Value 2 text 2'.Text)<20,Color.Green,If(Value('KPI Value 2 text 2'.Text) >=20 And Value('KPI Value 2 text 2'.Text) <=40, Color.Orange,Color.Red))"
+ Width: =544
+ X: =792
+ Y: =320
+ ZIndex: =18
+
+ Label6 As label:
+ Height: =91
+ Text: ="If(Value('KPI Value 3 text 2'.Text)<20,Color.Green,If(Value('KPI Value 3 text 2'.Text) >=20 And Value('KPI Value 3 text 2'.Text) <=40, Color.Orange,Color.Red))"
+ Width: =524
+ X: =792
+ Y: =408
+ ZIndex: =19
+
+ KPI1 As group:
+ Height: =5
+ Width: =5
+ X: =60
+ Y: =60
+ ZIndex: =27
+
+ "'Sales per month text' As label":
+ Text: ="Sales per month"
+ X: =40
+ Y: =111
+ ZIndex: =2
+
+ "'KPI Below 20 text 1' As label":
+ Text: ="KPI Below 20 - OK"
+ Width: =248
+ X: =219
+ Y: =111
+ ZIndex: =3
+
+ "'KPI above 20 Text 1' As label":
+ Text: ="KPI Above 20 - Not OK"
+ Width: =248
+ X: =219
+ Y: =170
+ ZIndex: =4
+
+ "'KPI Value 1 Text 1' As label":
+ Align: =Align.Center
+ Color: =Color.White
+ Fill: =If(Value('KPI Value 1 Text 1'.Text)<20,Color.Green,Color.Red)
+ FontWeight: =FontWeight.Lighter
+ Text: ="4"
+ Width: =248
+ X: =512
+ Y: =111
+ ZIndex: =5
+
+ "'KPI Value 2 Text 1' As label":
+ Align: =Align.Center
+ Color: =Color.White
+ Fill: =If(Value('KPI Value 2 Text 1'.Text)<20,Color.Green,Color.Red)
+ FontWeight: =FontWeight.Lighter
+ Text: |-
+ ="32
+ "
+ Width: =248
+ X: =512
+ Y: =170
+ ZIndex: =6
+
+ Label3 As label:
+ Text: ="If(Value('KPI Value 2 Text 1'.Text)<20,Color.Green,Color.Red)"
+ Width: =280
+ X: =792
+ Y: =170
+ ZIndex: =15
+
+ Label4 As label:
+ Text: ="If(Value('KPI Value 1 Text 1'.Text)<20,Color.Green,Color.Red)"
+ Width: =313
+ X: =792
+ Y: =111
+ ZIndex: =16
+
+ "'Text Example group' As group":
+ Height: =5
+ Width: =5
+ X: =60
+ Y: =60
+ ZIndex: =27
+
+ "'Sales per month text_3' As label":
+ Text: ="Sales per month"
+ X: =40
+ Y: =647
+ ZIndex: =20
+
+ "'KPI Text3-Text1' As label":
+ Text: ="KPI Resolved same day?"
+ Width: =248
+ X: =219
+ Y: =647
+ ZIndex: =21
+
+ "'KPI Text 3-1' As label":
+ Align: =Align.Center
+ Color: =Color.White
+ Fill: =If(Text('KPI Text 3-1'.Text) ="Resolved within same day",Color.Green,Color.Red)
+ FontWeight: =FontWeight.Lighter
+ Text: ="Resolved within same day"
+ Width: =267
+ X: =512
+ Y: =618
+ ZIndex: =23
+
+ "'KPI Text 3-2' As label":
+ Align: =Align.Center
+ Color: =Color.White
+ Fill: =If(Text('KPI Text 3-2'.Text) ="Resolved within same day",Color.Green,Color.Red)
+ FontWeight: =FontWeight.Lighter
+ Text: ="Not resolved with the same day"
+ Width: =267
+ X: =512
+ Y: =677
+ ZIndex: =24
+
+ Label7 As label:
+ Text: ="If(Text('KPI Text.Text) =Resolved within same day,Color.Green,Color.Red)"
+ Width: =529
+ X: =807
+ Y: =647
+ ZIndex: =25
+
+ TextPortionLabel As label:
+ Align: =Align.Center
+ FontWeight: =FontWeight.Semibold
+ Text: ="Make sure to wrap your Text in "" front and back otherwise it wont see it as a string"
+ Width: =726
+ X: =282
+ Y: =553
+ ZIndex: =26
+
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/Themes.json b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/Themes.json
new file mode 100644
index 0000000..a3ed930
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/Src/Themes.json
@@ -0,0 +1,4735 @@
+{
+ "CurrentTheme": "defaultTheme",
+ "CustomThemes": [
+ {
+ "name": "defaultTheme",
+ "palette": [
+ {
+ "name": "ScreenBkgColor",
+ "type": "c",
+ "value": "%Color.RESERVED%.White"
+ },
+ {
+ "name": "InvertedBkgColor",
+ "type": "c",
+ "value": "RGBA(56, 96, 178, 1)"
+ },
+ {
+ "name": "PrimaryColor1",
+ "type": "c",
+ "value": "RGBA(56, 96, 178, 1)"
+ },
+ {
+ "name": "PrimaryColor2",
+ "type": "c",
+ "value": "RGBA(0, 18, 107, 1)"
+ },
+ {
+ "name": "PrimaryColor3",
+ "type": "c",
+ "value": "RGBA(186, 202, 226, 1)"
+ },
+ {
+ "name": "PrimaryColor1Light",
+ "type": "c",
+ "value": "RGBA(56, 96, 178, .2)"
+ },
+ {
+ "name": "PrimaryColor2Light",
+ "type": "c",
+ "value": "RGBA(0, 18, 107, .2)"
+ },
+ {
+ "name": "PrimaryColor3Light",
+ "type": "c",
+ "value": "RGBA(186, 202, 226, .2)"
+ },
+ {
+ "name": "PrimaryColor3Fade",
+ "type": "c",
+ "value": "ColorFade(RGBA(186, 202, 226, 1), 70%)"
+ },
+ {
+ "name": "TextMainColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "TextMainColorInverted",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "TextLinkColor",
+ "type": "c",
+ "value": "RGBA(0, 134, 208, 1)"
+ },
+ {
+ "name": "TextFooterFontColor",
+ "type": "c",
+ "value": "RGBA(117, 117, 117, 1)"
+ },
+ {
+ "name": "InputBkgColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "InputTextColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "InputBorderColor",
+ "type": "c",
+ "value": "RGBA(0, 18, 107, 1)"
+ },
+ {
+ "name": "RailBkgColor",
+ "type": "c",
+ "value": "RGBA(128, 130, 133, 1)"
+ },
+ {
+ "name": "HandleBkgColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "InnerCircleBkgColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "DisabledBorderColor",
+ "type": "c",
+ "value": "RGBA(166, 166, 166, 1)"
+ },
+ {
+ "name": "DisabledTextMainColor",
+ "type": "c",
+ "value": "RGBA(166, 166, 166, 1)"
+ },
+ {
+ "name": "DisabledInputBkgColor",
+ "type": "c",
+ "value": "RGBA(244, 244, 244, 1)"
+ },
+ {
+ "name": "DisabledButtonBkgColor",
+ "type": "c",
+ "value": "RGBA(244, 244, 244, 1)"
+ },
+ {
+ "name": "HoverButtonBkgColor",
+ "type": "c",
+ "value": "ColorFade(RGBA(56, 96, 178, 1), -20%)"
+ },
+ {
+ "name": "HoverCancelButtonBkgColor",
+ "type": "c",
+ "value": "ColorFade(RGBA(62, 96, 170, 1), 20%)"
+ },
+ {
+ "name": "HoverInputBkgColor",
+ "type": "c",
+ "value": "RGBA(186, 202, 226, 1)"
+ },
+ {
+ "name": "OverlayBkgColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 0.4)"
+ },
+ {
+ "name": "ReservedInfoColor",
+ "type": "c",
+ "value": "RGBA(0, 134, 208, 1)"
+ },
+ {
+ "name": "ReservedSuccessColor",
+ "type": "c",
+ "value": "RGBA(141, 198, 63, 1)"
+ },
+ {
+ "name": "ReservedWarningColor",
+ "type": "c",
+ "value": "RGBA(252, 219, 2, 1)"
+ },
+ {
+ "name": "ReservedErrorColor",
+ "type": "c",
+ "value": "RGBA(246, 88, 16, 1)"
+ },
+ {
+ "name": "ReservedCriticalErrorColor",
+ "type": "c",
+ "value": "RGBA(168, 0, 0, 1)"
+ },
+ {
+ "name": "ReservedDisabledStatusColor",
+ "type": "c",
+ "value": "RGBA(193, 193, 193, 1)"
+ },
+ {
+ "name": "ReservedWhiteColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "ReservedGrayColor",
+ "type": "c",
+ "value": "RGBA(240, 240, 240, 1)"
+ },
+ {
+ "name": "ReservedBlackColor",
+ "type": "c",
+ "value": "RGBA(47, 41, 43, 1)"
+ },
+ {
+ "name": "ReservedChartColorSet",
+ "type": "![]",
+ "value": "[RGBA(49, 130, 93, 1),RGBA(48,166,103, 1), RGBA(94,193,108,1), RGBA(246,199,144,1), RGBA(247,199,114,1), RGBA(247,180,91,1), RGBA(246,143,100,1), RGBA(212,96,104,1), RGBA(148, 110, 176, 1), RGBA(118, 154, 204, 1), RGBA(96, 197, 234, 1)]"
+ },
+ {
+ "name": "TextBodyFontWeight",
+ "type": "e",
+ "value": "%FontWeight.RESERVED%.Normal"
+ },
+ {
+ "name": "TextEmphasisFontWeight",
+ "type": "e",
+ "value": "%FontWeight.RESERVED%.Semibold"
+ },
+ {
+ "name": "TextBodyFontFace",
+ "type": "e",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "name": "InputBorderThickness",
+ "type": "n",
+ "value": "2"
+ },
+ {
+ "name": "InputFocusedBorderThickness",
+ "type": "n",
+ "value": "4"
+ },
+ {
+ "name": "TextHeaderFontSize",
+ "phoneValue": "27",
+ "type": "n",
+ "value": "18"
+ },
+ {
+ "name": "TextTitleFontSize",
+ "type": "n",
+ "value": "20"
+ },
+ {
+ "name": "TextSubtitleFontSize",
+ "type": "n",
+ "value": "18"
+ },
+ {
+ "name": "TextContentFontSize",
+ "type": "n",
+ "value": "16"
+ },
+ {
+ "name": "TextHeaderFontSize2020",
+ "type": "n",
+ "value": "16"
+ },
+ {
+ "name": "TextEmphasisFontSize",
+ "phoneValue": "24",
+ "type": "n",
+ "value": "15"
+ },
+ {
+ "name": "TextBodyFontSize",
+ "phoneValue": "21",
+ "type": "n",
+ "value": "13"
+ },
+ {
+ "name": "TextFooterFontSize",
+ "phoneValue": "18",
+ "type": "n",
+ "value": "11"
+ },
+ {
+ "name": "TextMiniFontSize",
+ "phoneValue": "15",
+ "type": "n",
+ "value": "9"
+ },
+ {
+ "name": "IconFillColorInverted",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "IconPressedFillColorInverted",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 0.3)"
+ },
+ {
+ "name": "DatePickerSelectedColor",
+ "type": "c",
+ "value": "RGBA(37, 70, 148, 1)"
+ },
+ {
+ "name": "DatePickerHeaderColor",
+ "type": "c",
+ "value": "RGBA(68, 97, 165, 1)"
+ },
+ {
+ "name": "NoAttachmentPaddingLeft",
+ "phoneValue": "20",
+ "type": "n",
+ "value": "12"
+ },
+ {
+ "name": "DefaultSize",
+ "phoneValue": "24",
+ "type": "n",
+ "value": "14"
+ },
+ {
+ "name": "DefaultSize2",
+ "type": "n",
+ "value": "13"
+ },
+ {
+ "name": "DropTargetBorderColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "DropTargetBackgroundColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 0.8)"
+ },
+ {
+ "name": "DropTargetTextColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "DropTargetBorderThickness",
+ "type": "n",
+ "value": "2"
+ }
+ ],
+ "styles": [
+ {
+ "controlTemplateName": "screen",
+ "name": "defaultScreenStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.ScreenBkgColor%"
+ },
+ {
+ "property": "LoadingSpinnerColor",
+ "value": "%Palette.PrimaryColor1%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "defaultLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "5"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "5"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "basicNoSizeLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "basicNoSizeInvertedBkgLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "basicNoSizeWeightColorLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "invertedBkgHeaderLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextHeaderFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "invertedBkgTitleLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextTitleFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "linkLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextLinkColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "headerLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextHeaderFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "subHeaderLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "titleLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextTitleFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "overlayTitleLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextTitleFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "subtitleLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextSubtitleFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "overlaySubtitleLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextSubtitleFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "contentLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextContentFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "accentLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "5"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "5"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "pickerEmphasisLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "pickerEmphasisWithAccentLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "pickerEmphasisSecondaryLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextFooterFontColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "footerAccentLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextFooterFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "footerLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextFooterFontColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextFooterFontSize%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "5"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "5"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "miniLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextMiniFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "miniInvertedBkgLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextMiniFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "disabledLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedDisabledStatusColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "infoLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextLinkColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "successLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedSuccessColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "warningLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedWarningColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "errorLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedErrorColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "criticalErrorLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedCriticalErrorColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.DefaultSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "toggleSwitch",
+ "name": "defaultToggleSwitchStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "HandleFill",
+ "value": "%Palette.HandleBkgColor%"
+ },
+ {
+ "property": "FalseFill",
+ "value": "%Palette.RailBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "TrueFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "FalseHoverFill",
+ "value": "ColorFade(Self.FalseFill, 15%)"
+ },
+ {
+ "property": "TrueHoverFill",
+ "value": "ColorFade(Self.TrueFill, 15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -15%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rating",
+ "name": "defaultRatingStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "RatingFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "checkbox",
+ "name": "defaultCheckboxStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "CheckboxBackgroundFill",
+ "value": "%Palette.InnerCircleBkgColor%"
+ },
+ {
+ "property": "CheckboxBorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "CheckmarkFill",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "RGBA(70, 68, 64, 1)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -30%)"
+ },
+ {
+ "property": "HoverFill",
+ "value": "ColorFade(Self.Fill, 30%)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "0"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "radio",
+ "name": "defaultRadioStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "RadioBackgroundFill",
+ "value": "%Palette.InnerCircleBkgColor%"
+ },
+ {
+ "property": "RadioBorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "RadioSelectionFill",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "10"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "10"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Left"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "listbox",
+ "name": "defaultListboxStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledSelectionColor",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "DisabledSelectionFill",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "SelectionColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "SelectionFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(242, 242, 242, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "0"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "dropdown",
+ "name": "defaultDropdownStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "ChevronBackground",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "ChevronFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronHoverBackground",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "ChevronHoverFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronDisabledBackground",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ChevronDisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "SelectionColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "SelectionFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "10"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "10"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "10"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "10"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "combobox",
+ "name": "defaultComboBoxStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "ChevronBackground",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "ChevronFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronHoverBackground",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "ChevronHoverFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronDisabledBackground",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ChevronDisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "SelectionColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "SelectionFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "MoreItemsButtonColor",
+ "value": "Self.ChevronBackground"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "attachments",
+ "name": "defaultAttachmentsStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "ItemColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ItemFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "ItemHoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "ItemHoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "ItemSpacing",
+ "value": "0"
+ },
+ {
+ "property": "NoAttachmentsColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "NoAttachmentsPaddingLeft",
+ "value": "%Palette.NoAttachmentPaddingLeft%"
+ },
+ {
+ "property": "DropTargetBorderThickness",
+ "value": "%Palette.DropTargetBorderThickness%"
+ },
+ {
+ "property": "DropTargetBorderStyle",
+ "value": "%BorderStyle.RESERVED%.Dotted"
+ },
+ {
+ "property": "DropTargetBorderColor",
+ "value": "%Palette.DropTargetBorderColor%"
+ },
+ {
+ "property": "DropTargetBackgroundColor",
+ "value": "%Palette.DropTargetBackgroundColor%"
+ },
+ {
+ "property": "DropTargetTextColor",
+ "value": "%Palette.DropTargetTextColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "datepicker",
+ "name": "defaultDatePickerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "IconFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "IconBackground",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "SelectedDateFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverDateFill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "CalendarHeaderFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.DefaultSize%"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "12"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "lookup",
+ "name": "defaultLookupStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "ChevronBackground",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "ChevronFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronHoverBackground",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "ChevronHoverFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronDisabledBackground",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ChevronDisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "SelectionColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "SelectionFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "10"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "10"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "10"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "10"
+ },
+ {
+ "property": "FooterSize",
+ "value": "Self.Size - 3"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "text",
+ "name": "defaultTextStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "5"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "5"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "5"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "5"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Left"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "text",
+ "name": "searchTextStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.None"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "slider",
+ "name": "defaultSliderStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "HandleFill",
+ "value": "%Palette.HandleBkgColor%"
+ },
+ {
+ "property": "RailFill",
+ "value": "%Palette.RailBkgColor%"
+ },
+ {
+ "property": "ValueFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "HandleHoverFill",
+ "value": "Self.HandleFill"
+ },
+ {
+ "property": "HandleActiveFill",
+ "value": "Self.HandleFill"
+ },
+ {
+ "property": "RailHoverFill",
+ "value": "ColorFade(Self.RailFill, 15%)"
+ },
+ {
+ "property": "ValueHoverFill",
+ "value": "ColorFade(Self.ValueFill, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "button",
+ "name": "defaultButtonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Color"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Center"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "button",
+ "name": "cancelButtonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "button",
+ "name": "rezervedOkButtonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedWhiteColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.ReservedInfoColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "button",
+ "name": "rezervedCancelButtonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedInfoColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.ReservedWhiteColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "lineChart",
+ "name": "defaultLineChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "%Palette.ReservedChartColorSet%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "Size",
+ "value": "11"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "lineChart",
+ "name": "monochromeAccentLineChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "[%Palette.PrimaryColor1%]"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "pieChart",
+ "name": "defaultPieChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "%Palette.ReservedChartColorSet%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "Size",
+ "value": "10"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "pieChart",
+ "name": "monochromeAccentPieChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "[%Palette.PrimaryColor1%]"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "barChart",
+ "name": "defaultBarChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "%Palette.ReservedChartColorSet%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "Size",
+ "value": "10"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "barChart",
+ "name": "monochromeAccentBarChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "[%Palette.PrimaryColor1%]"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "legend",
+ "name": "defaultLegendStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextFooterFontSize%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.BorderColor"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "Self.BorderColor"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "separatorShapeStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "videoPlayback",
+ "name": "defaultVideoPlaybackStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "timer",
+ "name": "defaultTimerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "ColorFade(Self.BorderColor, 70%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "ColorFade(Self.Fill, 90%)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "ColorFade(Self.Fill, 70%)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Color"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.DefaultSize2%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "triangle",
+ "name": "defaultTriangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "star",
+ "name": "defaultStarStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "pentagon",
+ "name": "defaultPentagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "partialCircle",
+ "name": "defaultPartialCircleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "octagon",
+ "name": "defaultOctagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "defaultHexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "primary2HexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "primary3HexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "primary3FadeHexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3Fade%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "screenHexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.ScreenBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "circle",
+ "name": "defaultCircleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "circle",
+ "name": "primary2CircleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "circle",
+ "name": "primary3CircleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "circle",
+ "name": "primary3FadeCircleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3Fade%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "arrow",
+ "name": "defaultArrowStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "defaultIconStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "ColorFade(Self.Color, -20%)"
+ },
+ {
+ "property": "HoverColor",
+ "value": "ColorFade(Self.Color, 20%)"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "primary1IconStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "primary3IconStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "invertedBkgHeaderIconStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.IconFillColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.IconPressedFillColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "microphone",
+ "name": "defaultMicrophoneStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -15%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(119, 119, 119, 1)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -15%)"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "barcode",
+ "name": "defaultBarcodeStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "barcodeScanner",
+ "name": "defaultBarcodeScannerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Color"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Center"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "camera",
+ "name": "defaultCameraStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "inkControl",
+ "name": "defaultInkControlStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "Size",
+ "value": "2"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "import",
+ "name": "defaultImportStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "image",
+ "name": "defaultImageStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ },
+ {
+ "property": "HoverFill",
+ "value": "ColorFade(Self.Fill, 20%)"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "0"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "0"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "0"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "0"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "0"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "htmlviewer",
+ "name": "defaultHtmlViewerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "htmlviewer",
+ "name": "typedDataCardHtmlViewerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextLinkColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "export",
+ "name": "defaultExportStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "addMedia",
+ "name": "defaultAddMediaStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "Size",
+ "value": "11"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "HoverColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(119, 119, 119, 1)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ },
+ {
+ "property": "HoverFill",
+ "value": "ColorFade(Self.Fill, 20%)"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%FontWeight.RESERVED%.Semibold"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Center"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "audioPlayback",
+ "name": "defaultAudioPlaybackStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "defaultRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "primary2RectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "primary3RectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "primary3FadeRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3Fade%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "grayRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.ReservedGrayColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "invertedBackgroundRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.InvertedBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "overlayRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.OverlayBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "typedDataCard",
+ "name": "defaultTypedDataCardStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "entityForm",
+ "name": "defaultEntityFormStyle",
+ "propertyValuesMap": [
+ {
+ "property": "TextColor",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "InputTextColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "DisabledTextColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "PrimaryColor1",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "PrimaryColor2",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "PrimaryColor3",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "InputBackgroundColor",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%FontWeight.RESERVED%.Normal"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "dataGrid",
+ "name": "defaultDataGridStyle",
+ "propertyValuesMap": [
+ {
+ "property": "LinkColor",
+ "value": "%Palette.TextLinkColor%"
+ },
+ {
+ "property": "PrimaryColor1",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "PrimaryColor2",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "PrimaryColor3",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "InvertedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "SelectedFill",
+ "value": "%Palette.PrimaryColor1Light%"
+ },
+ {
+ "property": "SelectedColor",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.PrimaryColor3Light%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "InputFill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "HeadingFont",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "HeadingFontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HeadingSize",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "HeadingColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "HeadingFill",
+ "value": "%Palette.PrimaryColor1%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "powerbi",
+ "name": "defaultPowerbiStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "microsoftStreamPlayback",
+ "name": "defaultMicrosoftStreamPlaybackStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.ScreenBkgColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "form",
+ "name": "defaultFormStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "formViewer",
+ "name": "defaultFormViewerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "pdfViewer",
+ "name": "defaultPdfViewerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.ScreenBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "gallery",
+ "name": "defaultGalleryStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "richTextEditor",
+ "name": "defaultRichTextEditorStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "dataTable",
+ "name": "defaultDataTableStyle",
+ "propertyValuesMap": [
+ {
+ "property": "LinkColor",
+ "value": "%Palette.TextLinkColor%"
+ },
+ {
+ "property": "PrimaryColor1",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "PrimaryColor2",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "PrimaryColor3",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "InvertedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "SelectedFill",
+ "value": "%Palette.PrimaryColor1Light%"
+ },
+ {
+ "property": "SelectedColor",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.PrimaryColor3Light%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "InputFill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "HeadingFont",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "HeadingFontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HeadingSize",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "HeadingColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "HeadingFill",
+ "value": "%Palette.PrimaryColor1%"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/pkgs/button_2.2.0.xml b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/pkgs/button_2.2.0.xml
new file mode 100644
index 0000000..bd3107b
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/pkgs/button_2.2.0.xml
@@ -0,0 +1,232 @@
+
+
+ TODO: Need license text here.
]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+ The pressed state of the button.
+ data
+ boolean
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/pkgs/label_2.5.1.xml b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/pkgs/label_2.5.1.xml
new file mode 100644
index 0000000..e9d1e20
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/CanvasApps/src/crc69_kpiusecases_d7e01/pkgs/label_2.5.1.xml
@@ -0,0 +1,341 @@
+
+
+ TODO: Need license text here.]]>
+
+
+
+
+
+
+
+ = 0 ? 'button' : 'presentation',
+ 'aria-disabled': properties.TabIndex() >= 0 && viewState.displayMode() !== AppMagic.Constants.DisplayMode.Edit
+ },
+ event: {
+ click: handleClick
+ },
+ shortcut: {
+ provider: shortcutProvider,
+ enabled: shortcutsEnabled
+ }"
+ >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+ Live
+ data
+ ##label_Live_DisplayName##
+ ##label_Live_Tooltip##
+
+
+
+ Line Height
+ design
+ ##label_LineHeight_DisplayName##
+ ##label_LineHeight_Tooltip##
+ lineWidth
+
+
+ Overflow
+ design
+ ##label_Overflow_DisplayName##
+ ##label_Overflow_Tooltip##
+ overflow
+
+
+
+ AutoHeight
+ design
+ ##CommonProperties_AutoHeight_DisplayName##
+ ##CommonProperties_AutoHeight_Tooltip##
+
+
+ Wrap
+ design
+ ##label_Wrap_DisplayName##
+ ##label_Wrap_Tooltip##
+
+
+
+ design
+
+
+
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/Other/Customizations.xml b/samples/ifcolorconditions-function/sourcecode/src/Other/Customizations.xml
new file mode 100644
index 0000000..d1b0c83
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/Other/Customizations.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1033
+
+
\ No newline at end of file
diff --git a/samples/ifcolorconditions-function/sourcecode/src/Other/Solution.xml b/samples/ifcolorconditions-function/sourcecode/src/Other/Solution.xml
new file mode 100644
index 0000000..a854398
--- /dev/null
+++ b/samples/ifcolorconditions-function/sourcecode/src/Other/Solution.xml
@@ -0,0 +1,85 @@
+
+
+
+ KPI
+
+
+
+
+ 1.0.0.0
+ 2
+
+ Cr38c7d
+
+
+
+
+
+
+ crc69
+ 82640
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file