Sign in to follow this  
WebDevSarah

Scroll Column 2D Chart Div Lines Don't Always Appear

Recommended Posts

Hello FC!

My team has come across another issue. In the Scroll Column 2D Chart, the div lines don't always appear. Here is our JSON example and accompanying screenshot.

 

Thanks,

Sarah

 

{

 

"chart": {

 

"xaxisname": "Date",

 

"yaxisname": "Exit Rate",

 

 

"yAxisMaxValue": "50",

 

"numVisiblePlot": "30",

 

"numdivlines": "9",

 

"showlegend": "0",

 

"showBorder": "0",

 

"useRoundEdges": "1",

 

"scrollToEnd": "1",

 

"showExportDataMenuItem": "1",

 

"exportEnabled": "1",

 

"exportShowMenuItem": "0",

 

"exportatclient": "1",

 

"exporthandler": "fcExporter1",

 

"showExportDialog": "1",

 

"manageLabelOverflow": "1"

 

}

 

 

 

,

 

"categories": [{

 

"font": "Arial",

 

"category": [

 

 

 

{

 

"label": "08/28/2012"

 

},

 

{

 

"label": "08/29/2012"

 

},

 

{

 

"label": "08/30/2012"

 

} ]

 

}],

 

"dataset": [{

 

"color": "B3B3FF",

 

"data": [

 

 

 

{

 

"value": "56.7", "displayValue": "56.7%", "tooltext": "Total Visit Count: 1,514{br}Exit Visit Count: 859{br}{br}Exit Rate: 56.7%"

 

},

 

{

 

"value": "58.3", "displayValue": "58.3%", "tooltext": "Total Visit Count: 1,384{br}Exit Visit Count: 807{br}{br}Exit Rate: 58.3%"

 

},

 

{

 

"value": "56.8", "displayValue": "56.8%", "tooltext": "Total Visit Count: 1,307{br}Exit Visit Count: 742{br}{br}Exit Rate: 56.8%"

 

} ]

 

}]

 

}

post-24281-0-82151700-1349267920_thumb.png

Edited by WebDevSarah

Share this post


Link to post
Share on other sites
Guest Sumedh

Hi,

 

Please note, if you provide yAxisMaxValue and yAxisMinValue attributes explicitely, then you would need to specify adjustDiv attribute as "0".

 

You need to disable automatic adjustment of divisional lines using adjustDiv='0'. Then you can specify the y-axis upper and lower limits using the yAxisMaxValue and yAxisMinValue attributes respectively. Also, the number of divisional lines can be specified using the numDivLines attribute.

 

Ref. Code:

{

"chart": {

.

.

.

"adjustDiv":"0",

 

},

 

Also, find attached screen-shot for your reference.

 

Hope this helps!

post-24802-0-16014900-1349344846_thumb.png

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this