santa,
rtl support is not available yet in CanvasJS.
__
Anjali
monba,
Can you please try with the below code:
function printDiv(divName) {
window.print();
}
ssnimbolkar,
You can use suffix property of axisY or format the same using valueFormatString. But you cannot have more than one suffix at a time.
__
Anjali
mia,
This issue has been in the latest version – 1.6.0 Beta. Please download the same and let us know if its working as expected at your end.
__
Anjali
pjnoguerol,
This issue has been in the latest version – 1.6.0 Beta. Please download the same and let us know if its working as expected at your end.
__
Anjali
parvane,
x values can only be numeric or date-time values. If you want to use strings, assign it to label instead of x. Here is an example.
__
Anjali
tom,
Sorry, we are not able to understand the issue. jsFiddle link that you have given is the default one – seems like you forgot to save the jsfiddle that you created.
__
Anjali
jabndor,
This feature is not available yet.
__
Anjali
ddawson,
This is not possible as y values can only be numeric.
__
Anjali
paulineg,
Because CanvasJS charts can handle large amount of data, we do not do any sampling. Hence you should not have any problem in visualizing the spikes.
__
Anjali Jain
noremorse,
As of now we do not have a way to do the same.
__
Anjali jain
aj2014,
As of now, we do not have an option for the same. But we will be implementing custom themes in future which will allow you to do the same.
__
Anjali Jain
alexmatveev,
We still don’t have this feature available.
andres,
You are echoing data twice for creating JSON, instead of this echo at once and include all required properties within it. For doing the same please follow the below code:
while($row = mysqli_fetch_array($result))
{
$point = array("label" => $row['Support'] , "y" => $row['yValues'], "legendText" => $row['Descriptors']);
array_push($data_points, $point);
}
$length = sizeof($data_points);
echo "[";
for ( $i = 0; $i <= $length-1; $i++) {
echo "{ \"label\": \"" , $data_points[$i]['label'],"\", \"y\": ", $data_points[$i]['y'], ",
\"legendText\": \"" , $data_points[$i]['legendText'], "\" }";
if( $i < $length-1)
echo ",";
}
echo "]";
__
Anjali