| Auszug |
|---|
|
Nuclos chart configuration: sort, sortByBoAttrId, crosshair, bar, Y axis, tooltip, JSON. |
Language: Deutsch · English
Configuration
Fine-tune charts – sorting, crosshair, combined charts and tooltips.
| Status |
|---|
| colour | Green |
|---|
| title | Updated: Jul 2026 |
|---|
|
| Status |
|---|
| colour | Grey |
|---|
| title | applies to Nuclos 4.2026.x |
|---|
|
Advanced options for the chart configuration (JSON). For the basics see Charts.
Sorting
By default sorting is by categoryBoAttrId; alternatively:
| Codeblock |
|---|
|
"chart": {
"primaryChart": {
"sort": {
"sortByBoAttrId": "nuclet_test_charts_FinancialFigures_gewinn",
"sortDirection": "asc"
}
...
}
} |
Crosshair (4 quadrants)
Define two attributes in the data source (only the first record is used as coordinate) and configure them in the chart:
| Codeblock |
|---|
|
"chart": {
"primaryChart": {
"crosshair": {
"categoryBoAttrId": "example_rest_CategorySalesCustomerCRT_crosshaircategory",
"seriesBoAttrId": "example_rest_CategorySalesCustomerCRT_crosshairseries",
"color": "green"
}
},
} |
Combined line/bar chart
The data series to be shown as bars gets the "bar" flag. With identical scaling, the Y axis can be synchronized.
The tooltip information can be extended by an additional attribute per series.
Related pages