In general, up to now, you have had little influence on graphics in list analysis. We want to change this in the future and offer you more possibilities to influence it. Unfortunately, at the moment this only works in the "Advanced" section of the list element or by making adjustments in the XML. Therefore, you should have some experience with Open as App and app creation or have some coding knowledge. In general, it is recommended to make a copy of the app in case you make mistakes.
Hiding of Counttiles and Charts
Whether counting cards or diagrams should be hidden is determined in the "Advanced" area of the list element. By default, these are always displayed if you have defined drill down columns or sum columns.
Counttiles
- Hide counttiles for the drilldown columns
Enter the following definition dashboardcounttiles and false (Confirm the entry by pressing the "+").
- Hide counttiles for the sum columns
Enter the following definition dashboardsumtiles and false (Confirm the entry by pressing the "+").
Charts
- Hide charts for the drilldown columns
Enter the following definition dashboardcountcharts and false (Confirm the entry by pressing the "+").
- Hide charts for the sum columns
Enter the following definition dashboardsumcharts and false (Confirm the entry by pressing the "+").
Positioning of the diagrams and order of the values
To do this, you must switch to the XML of the app (Advanced -> XML Configuration) and make some changes to the structure of the list element. At this point, it is best to make a copy of the app.
Here you see a list and the corresponding standard XML code.
Changes you have to make:
1. Change the embracing definition listolumns to columns. (<listcolumns ... </listcolumns> -> <columns ... </columns>)
2. In the bracketed definition you will find the individual definitions of the selected columns. You must change the names of these entries from listcolumn to column. (<listcolumn...</listcolumn> -> <column ... </column>)
You have thus created the basis for making the following adjustments.
Order of the charts
This allows you to specify whether you want to start by counting up / summing up the values of column X or column Y.
Drilldown chart
With the definition drilldownposition="VALUE" you define the order in which the drilldown chart(s) appears in the list analysis. Attention, counting starts at 0.
Example:
<column detailposition="1" listposition="1" type="text" index="1" drilldownsortorder="asc" drilldownsorttype="caption" drilldownposition="0"/></column>
<column detailposition="2" listposition="2" type="text" index="2" drilldownsortorder="asc" drilldownsorttype="caption" drilldownposition="1"/></column>
Sum chart
With the definition sumposition="VALUE" you define the order in which the sum chart(s) appears in the list analysis. Attention, counting starts at 0.
Example:
<column detailposition="15" listposition="15" type="currency" index="18" sumsortorder="asc" sumsorttype="caption" sumposition="0"/></column>
<column detailposition="15" listposition="15" type="currency" index="18" sumsortorder="asc" sumsorttype="caption" sumposition="1"/></column>
Order of the values
With the definition drilldownsortorder="asc"/"desc" you define the general order of the values. (asc : ascending) or from the largest to the smallest (desc : descending)
Drilldown- sorted by name
In addition, the definition drilldownsorttype="caption" is used here. Here the first letters of the Y-axes are considered.
The combination drilldownsortorder="asc"/"desc" + drilldownsorttype="caption" allows you to arrange the values according to the first letters of the Y-axis ( asc -> A-Z, desc -> Z-A)
Example:
<column detailposition="1" listposition="4" type="text" index="1" drilldownsortorder="asc" drilldownsorttype="caption" drilldownposition="0"/></column>
<column detailposition="2" listposition="2" type="text" index="2" drilldownsortorder="desc" drilldownsorttype="caption" drilldownposition="1"/></column>
Drilldown - sorted by value
In addition, the definition drilldownsorttype="value" is used here. Here the first values of the Y-axes are considered.
With the combination drilldownsortorder="asc"/"desc" + drilldownsorttype="value" you can arrange the drilldown values according to their respective size ( asc - smallest -> largest, desc - largest -> smallest ).
Example:
<column detailposition="3" listposition="1" type="text" index="3" drilldownsortorder="asc" drilldownsorttype="value" drilldownposition="0"/></column>
<column detailposition="4" listposition="1" type="text" index="4" drilldownsortorder="desc" drilldownsorttype="value" drilldownposition="1"/></column>
Sum chart - sorted by name
In addition, the definition sumsorttype="caption" is used here. Here the first letters of the Y-axes are considered.
The combination sumsortorder="asc"/"desc" + drilldownsorttype="caption" allows you to arrange the values according to the first letters of the Y-axis ( asc -> A-Z, desc -> Z-A)
Example:
<column detailposition="15" listposition="15" type="currency" index="18" sumsortorder="asc" sumsorttype="caption" sumposition="0"/></column>
<column detailposition="16" listposition="16" type="currency" index="19" sumsortorder="desc" sumsorttype="caption" sumposition="1"/></column>
Sum chart - sorted by value
In addition, the definition sumsorttype="value" is used here. Here the values of the Y-axes are considered.
With the combination sumsortorder="asc"/"desc" + sumsorttype="value" you can arrange the drilldown values according to their respective size ( asc - smallest -> largest, desc - largest -> smallest ).
Example:
<column detailposition="15" listposition="15" type="currency" index="18" sumsortorder="asc" sumsorttype="value" sumposition="0"/></column>
<column detailposition="16" listposition="16" type="currency" index="19" sumsortorder="desc" sumsorttype="value" sumposition="1"/></column>
Comments
0 comments
Please sign in to leave a comment.