Welcome to Knowage Q&A, where you can ask questions and receive answers from other members of the community.
0 votes
1 view

In gauge I want to set parameter plotOptions.gauge.wrap=false  (see http://api.highcharts.com/highcharts/plotOptions.gauge.wrap)

I can't find this parameter from UI. Is any oppotunity to do this? (maybe change some files or  just change defaut value of this parameter)

Environment Knowage CE
in Charting by (2.8k points)

1 Answer

+1 vote
 
Best answer

What you should do is:
1. open your server
2. open folder webapps
3. open knowagecockpitengine.war with WinZip or WinRar
4. open WEB-INF\classes\chart\templates\highcharts414
5. open gauge_chart.vm with Notepad++
6. add 
plotOptions: {
        gauge: {
            wrap: true
        }
    },
on line 907
7. Save and close
Start your server.

by (3.3k points)
selected by
Perfect! Thank you
...