Датчик icCube с несколькими цветами полос - PullRequest
1 голос
/ 30 октября 2019

Я пытаюсь сделать калибр и хочу иметь два цвета полосы (неправильный / красный, хороший / зеленый). У меня есть пример amchart в их онлайн Chart Maker https://live.amcharts.com/new/edit/. Но я не могу заставить это работать в icCube.

актуально у нас есть версия отчетов icCube 7.0.0 (5549).

Это мой график JSON:

{
"box": {
    "id": "wb695",
    "widgetAdapterId": "w28",
    "rectangle": {
        "left": 1510,
        "top": 340,
        "right": 1910,
        "bottom": 640
    },
    "zIndex": 901
},
"data": {
    "mode": "MDX",
    "schemaSettings": {
        "cubeName": null,
        "schemaName": null
    },
    "options": {
        "WIZARD": {
            "measures": [],
            "rows": [],
            "rowsNonEmpty": false,
            "columns": [],
            "columnsNonEmpty": false,
            "filter": []
        },
        "MDX": {
            "statement": "with \n    member [Measures].[Measure1] AS 0.9\n    member [Measures].[Measure2] AS 0.1\nSELECT\n\n{[Measures].[Measure1], [Measures].[Measure2]} on 0\n\nFROM [cube]"
        },
        "DATASOURCE": {}
    },
    "ic3_name": "mdx Query-5",
    "ic3_uid": "m17"
},
"data-render": {
    "chartType": {
        "label": "Gauge",
        "proto": {
            "chartPrototype": {
                "type": "gauge",
                "arrows": [
                    {
                        "id": "GaugeArrow-1"
                    }
                ],
                "axes": [
                    {
                        "id": "GaugeAxis-1"
                    }
                ]
            },
            "graphPrototype": {},
            "dataProviderType": 3
        },
        "id": "gauge-chart"
    },
    "graphsConfiguration": [
        {
            "graph": {}
        }
    ],
    "valueAxes": [],
    "trendLinesGuides": {},
    "configuredQuadrants": {},
    "advanced": {
        "titles": [],
        "faceAlpha": 0,
        "faceBorderAlpha": 0
    },
    "balloon": {
        "offsetX": 8
    },
    "chartOptions": {
        "axes": [
            {
                "axisAlpha": 0.25,
                "bottomText": "SLA",
                "bottomTextColor": "#2A3F56",
                "tickAlpha": 0.25,
                "bandOutlineAlpha": 1,
                "bandAlpha": 1,
                "bandOutlineThickness": 95,
                "bandOutlineColor": "#0095BC",
                "id": 1
            }
        ],
        "bands": [
            {
                "alpha": 0.8,
                "color": "#B53728",
                "endValue": 0.6,
                "startValue": 0,
                "id": "GaugeBand-1"
            },
            {
                "alpha": 0.6,
                "color": "#435035",
                "endValue": 1,
                "startValue": 0.6,
                "innerRadius": 0.69,
                "id": "GaugeBand-2"
            }
        ]
    },
    "ic3Data": {
        "chartTypeConfig": {
            "pie-chart-donut": {
                "chartType": {
                    "label": "Donut",
                    "proto": {
                        "chartPrototype": {
                            "type": "donut",
                            "pullOutRadius": 0,
                            "startDuration": 0,
                            "legend": {
                                "enabled": false,
                                "align": "center",
                                "markerType": "circle"
                            },
                            "innerRadius": "60%"
                        },
                        "dataProviderType": 1
                    },
                    "id": "pie-chart-donut"
                },
                "graphsConfiguration": [
                    {}
                ],
                "valueAxes": [],
                "trendLinesGuides": {},
                "configuredQuadrants": {},
                "advanced": {
                    "titles": []
                },
                "balloon": {
                    "offsetX": 8
                },
                "chartOptions": {
                    "showZeroSlices": false,
                    "labelsEnabled": false,
                    "innerRadius": "60%",
                    "startAngle": 270,
                    "radius": "",
                    "fontSize": 20,
                    "color": "#0095BC",
                    "outlineAlpha": 0.25,
                    "tapToActivate": false
                }
            }
        }
    },
    "axes": [
        {
            "startValue": 0,
            "endValue": 1,
            "startAngle": -90,
            "endAngle": 90
        }
    ],
    "valueFormatting": ""
},
"navigation": {
    "menuVisibility": {
        "back": true,
        "axisXChange": "All",
        "axisYChange": "All",
        "filter": "All",
        "reset": true,
        "widget": true,
        "others": "All"
    },
    "selectionMode": "disabled"
},
"events": {},
"filtering": {},
"hooks": {}

}

...