Below is my JSON Data,
{
"chart":{"type":"bubble","plotBackgroundImage":"Highcharts-3.0.7/graphics/BubbleBGImage.jpg"},
"series":
[
{"data":[{"x":7,"y":7,"z":49},{"x":7,"y":7,"z":49}]},
{"data":[{"x":7,"y":8,"z":56},{"x":7,"y":8,"z":56}]},
{"data":[{"x":7,"y":8,"z":56},{"x":7,"y":8,"z":56}]},
{"data":[{"x":3,"y":7,"z":21},{"x":3,"y":7,"z":21}]}
]
}
I have that image in that path too but when try to get bubble chart, I can get result as required except the required Back Ground Image whose path I have mentioned in JSON Data, I get blur image behind the bubbles,I am getting this JSON data from Web Service and have passed this HighChart API through Web Method, My path is correct, I have checked this with another html code executed from localhost to render same output for bubble chart and it gives same result with desired background Image as well, but doesnot give same background image with this JSON data,any clue what I am messing with ..???