Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added missing sections to most visuals, and added missing visual templates #65

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions AzureMap.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "AzureMapTemplate",
"visualStyles": {
"azureMap": {
"*": {
"general": [{
"responsive": true,
"keepLayerOrder": true
}],
"background": [{
"show": true,
"color": { "solid": { "color": "#FFFFFF"}},
"transparency": 0
}],
"border": [{
"color": { "solid": { "color": "#808080"}},
"show": true,
"radius": 0
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#000000" } },
"background": { "solid": { "color": "#FFFFFF" } },
"alignment": "center"
}],
"legend": [{
"show": true,
"position": "Top",
"showTitle": true,
"titleText": "",
"legendColor": { "solid": { "color": "#01B8AA"}},
"fontFamily": "Segoe UI",
"fontSize": 12
}]
}
}
}
}
86 changes: 86 additions & 0 deletions Button.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,94 @@
"visualStyles": {
"actionButton": {
"*": {
"general": [{
"responsive": true,
"keepLayerOrder": true
}],
"background": [{
"show": true,
"color": { "solid": { "color": "#FFFFFF"}},
"transparency": 0
}],
"border": [{
"color": { "solid": { "color": "#808080"}},
"show": true,
"radius": 0
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#000000" } },
"background": { "solid": { "color": "#FFFFFF" } },
"alignment": "center"
}],
"visualHeader": [{
"show": true
}],
"outline": [{
"show": true
},
{
"$id": "default",
"weight": 5
},
{
"$id": "hover",
"weight": 5
},
{
"$id": "selected",
"weight": 5
}],
"fill": [{
"show": true
},
{
"$id": "default",
"transparency": 0,
"fillColor": {"solid":{"color":"#5CBE9A"}}
},
{
"$id": "hover",
"transparency": 0,
"fillColor": {"solid":{"color":"#B9E5F3"}}
},
{
"$id": "selected",
"transparency": 0,
"fillColor": {"solid":{"color":"#3643AC"}}
}],
"icon": [{
"show": true
},
{
"$id": "default",
"lineColor": {"solid":{"color":"#1A5741"}}
},
{
"$id": "hover",
"lineColor": {"solid":{"color":"#1A5741"}}
},
{
"$id": "selected",
"lineColor": {"solid":{"color":"#1A5741"}}
}],
"text": [{
"show": true
},
{
"$id": "default",
"fontColor": {"solid":{"color":"#FFFFFF"}},
"horizontalAlignment": "center"
},
{
"$id": "hover",
"fontColor": {"solid":{"color":"#FFFFFF"}},
"horizontalAlignment": "center"
},
{
"$id": "selected",
"fontColor": {"solid":{"color":"#FFFFFF"}},
"horizontalAlignment": "center"
}]
}
}
Expand Down
16 changes: 8 additions & 8 deletions Card.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"visualStyles": {
"card": {
"*": {
"general": [{
"responsive": true,
"keepLayerOrder": true
}],
"labels": [{
"color": { "solid": { "color": "#000000"}},
"labelDisplayUnits": "0",
Expand All @@ -21,14 +25,9 @@
}],
"background": [{
"show": true,
"color": {
"solid": {
"color": "#000000"
}
},
"color": { "solid": { "color": "#000000"}},
"transparency": 0
}
],
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#ffffff" } },
Expand All @@ -39,7 +38,8 @@
}],
"border": [{
"show": true,
"color": { "solid": { "color": "#062b60"}}
"color": { "solid": { "color": "#062b60"}},
"radius": 0
}]
}
}
Expand Down
20 changes: 20 additions & 0 deletions DecompositionTree.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
"visualStyles": {
"decompositionTreeVisual": {
"*": {
"general": [{
"responsive": true,
"keepLayerOrder": true
}],
"background": [{
"show": true,
"color": { "solid": { "color": "#FFFFFF"}},
"transparency": 0
}],
"border": [{
"color": { "solid": { "color": "#808080"}},
"show": true,
"radius": 0
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#000000" } },
"background": { "solid": { "color": "#FFFFFF" } },
"alignment": "center"
}],
"categoryLabels": [{
"categoryLabelFontColor": { "solid": { "color": "#0100AA"}},
"categoryLabelFontFamily": "Verdana",
Expand Down
20 changes: 20 additions & 0 deletions Donut.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
"visualStyles": {
"donutChart": {
"*": {
"general": [{
"responsive": true,
"keepLayerOrder": true
}],
"background": [{
"show": true,
"color": { "solid": { "color": "#FFFFFF"}},
"transparency": 0
}],
"border": [{
"color": { "solid": { "color": "#808080"}},
"show": true,
"radius": 0
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#000000" } },
"background": { "solid": { "color": "#FFFFFF" } },
"alignment": "center"
}],
"legend": [{
"show": true,
"position": "Top",
Expand Down
38 changes: 38 additions & 0 deletions EsriArcGisMap.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "EsriArcGISMapTemplate",
"visualStyles": {
"esriVisual": {
"*": {
"general": [{
"responsive": true,
"keepLayerOrder": true
}],
"background": [{
"show": true,
"color": { "solid": { "color": "#FFFFFF"}},
"transparency": 0
}],
"border": [{
"color": { "solid": { "color": "#808080"}},
"show": true,
"radius": 0
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#000000" } },
"background": { "solid": { "color": "#FFFFFF" } },
"alignment": "center"
}],
"legend": [{
"show": true,
"position": "Top",
"showTitle": true,
"titleText": "",
"legendColor": { "solid": { "color": "#01B8AA"}},
"fontFamily": "Segoe UI",
"fontSize": 12
}]
}
}
}
}
20 changes: 20 additions & 0 deletions FilledMap.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
"visualStyles": {
"filledMap": {
"*": {
"general": [{
"responsive": true,
"keepLayerOrder": true
}],
"background": [{
"show": true,
"color": { "solid": { "color": "#FFFFFF"}},
"transparency": 0
}],
"border": [{
"color": { "solid": { "color": "#808080"}},
"show": true,
"radius": 0
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#000000" } },
"background": { "solid": { "color": "#FFFFFF" } },
"alignment": "center"
}],
"legend": [{
"show": true,
"position": "Top",
Expand Down
20 changes: 20 additions & 0 deletions Funnel.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
"visualStyles": {
"funnel": {
"*": {
"general": [{
"responsive": true,
"keepLayerOrder": true
}],
"background": [{
"show": true,
"color": { "solid": { "color": "#FFFFFF"}},
"transparency": 0
}],
"border": [{
"color": { "solid": { "color": "#808080"}},
"show": true,
"radius": 0
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#000000" } },
"background": { "solid": { "color": "#FFFFFF" } },
"alignment": "center"
}],
"categoryAxis": [{
"show": true,
"color": { "solid": { "color": "#000000"}},
Expand Down
20 changes: 20 additions & 0 deletions Gauge.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
"visualStyles": {
"gauge": {
"*": {
"general": [{
"responsive": true,
"keepLayerOrder": true
}],
"background": [{
"show": true,
"color": { "solid": { "color": "#FFFFFF"}},
"transparency": 0
}],
"border": [{
"color": { "solid": { "color": "#808080"}},
"show": true,
"radius": 0
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#000000" } },
"background": { "solid": { "color": "#FFFFFF" } },
"alignment": "center"
}],
"axis": [{
"max": 100,
"target": 101
Expand Down
20 changes: 20 additions & 0 deletions Image.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
"visualStyles": {
"image": {
"*": {
"general": [{
"responsive": true,
"keepLayerOrder": true
}],
"background": [{
"show": true,
"color": { "solid": { "color": "#FFFFFF"}},
"transparency": 0
}],
"border": [{
"color": { "solid": { "color": "#808080"}},
"show": true,
"radius": 0
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#000000" } },
"background": { "solid": { "color": "#FFFFFF" } },
"alignment": "center"
}],
"imageScaling": [{
"imageScalingType": "Normal"
}]
Expand Down
Loading