How to change column chart bar lines corners
Now My Chart is look like this image
But, I want it look like this
How to do this?
Rewards,
Somnath
hi Somnath V,
please check this application and Adv. Format..
Thanks,
Ramesh
Hi Somnath,
You can add custom json configuration in your charting widget via the parameter AdvancedFormat > HighchartsJSON, with the following value:
"plotOptions: { series: { borderRadiusTopLeft: '20px', borderRadiusTopRight: '20px' }}"
Here's a sample on jsfiddle https://jsfiddle.net/hgt2bLa7/1/
Hi @Dmitrii Lubenskii ,
the method to specify options is different now, but you can still give them round corners
see also this post
for round corners :
Dorine
Does not work with Charts version 3
Thank you,
but unfortunately it does not work...
I have working json for my chart, but if I provide all the properties to the OS chart, then nothing is applied... No tooltip html support, no custom border radius for specific series, and moreover -- no RTL support.
I have no idea why they overcomplicated the control, when it is much more easier to use the library and build json...
if you share an oml with what you tried, i'd be happy to have a look
I AM ALSO FACING THE SAME ERROR IN MY PROJECT. I THINK THIS IS A BUG IN HIGH CHART OUTSYSTEMS. WHEN I TRIED THIS ON FADDLE.JS IT WORKED.
https://sanju-singh.outsystemscloud.com/OrderManagement/DashboardManager
Hi guys
I found a solution in Json... you can use this code for border-radius and gradient charts.
"plotOptions: {
},
series: [{
borderRadius: {
radius: 10
color: {
linearGradient: { x1: 0, y1: 0, x2: 1, y2: 1 },
stops: [
[0, 'rgb(0, 0, 255)'],
[1, 'rgb(200, 0, 0)']
]
}]"
Also for border-radius you can use this link
https://jsfiddle.net/highcharts/b288zrch/