You can set markerSize to show legendMarker.
Thanks for reporting the issue. The issue has been fixed and will be releasing in couple of days.
Mayank,
Its not possible to avoid overlapping of scatter-points/bubbles, when they are at same(or nearest) points. But you can show up all dataPoints by setting either fillOpacity or reducing the markerSize.
When dataPoints are highlighted, indexlabels that are placed inside will not be shown. To avoid this you can disable highlighting the dataPoint. Check this updated jsfiddle.
Sorry, positioning image instead of indexLabels is not available as of now. But you can place an image in toolTip. Please check this jsfiddle for the same.
labelFormatter is available since v1.7.0.
In order to upgrade login to My Account (using the email id provided while purchasing license) and select Renew.
In case you have more questions, please contact sales[at]canvasjs.com and they’ll assist your further on this.
—
Vishwas R
Team CanvasJS
Mayank,
You can customize labels, indexLabels, axis, marker properties like color, size etc. Please check documentation for more options. Check this jsfiddle for updated code.
[update]
We have just released v1.9.6 Beta with Methods & Properties, which allows you to programmatically export chart as image, print chart, access internally calculated values, etc. Please refer to the release blog for more information.
Sameer,
Setting axisX minimum to zero would work fine in your case.
Anne,
As toolTip is a DOM element, CSS you use over the div will be applied to that aswell. You can use display: inline-block;
and it works fine.
Check this page for tutorial on how to render multiple charts in a page.
Emily,
indexLabels are skipped whenever they get closer to other labels – this behavior is by design. You can workaround this issue by either rotating the Pie Chart as shown in this JSFiddle or by showing indexLabel outside the Pie Chart as shown in this JSFiddle – indexLabels are placed better when they are outside.
You can place position the indexlabels inside / outside by setting indexLabelPlacement property and rotate the pie by setting startAngle property.
You are re-rendering chart every 15000ms (15seconds), so zoomed level disappears every 15seconds.
function updateChart(){
$("#chartContainer1").CanvasJSChart(options1).render;
}
setInterval(function(){updateChart()}, 15000);
Removing these lines will work fine with zooming functionality within different tabs. Please check this jsfiddle.
[UPDATE]
We have just release v1.9.5GA with multiple axis support. Please refer to the release blog for more information.
Thomas,
Multiple axes will be going GA in a week or two. Please subscribe to our blog for updates.
—
Vishwas R
Team CanvasJS
It’s not a bug. ToolTip is a Dom-element, so whenever you assign height to all div elements, it will be applicable even for tooltip. It’s suggested to apply height based on class or id of div.
Are you looking for this?