Home Forums Chart Support Chart within ToolTip or Chart within a Chart Reply To: Chart within ToolTip or Chart within a Chart

#35706

Hello Manoj,

Thank you for that solution! At least I know it is possible to do this. However, the issue I am still having is that the pie chart has to be built based on datapoints sent to each scatter chart point.

For example, my incoming datepoints for the scatter chart are from a PHP array:
var data = <php echo json_encode($dpoints, JSON_NUMERIC_CHECK); ?>;

In that PHP array are values such as [[0] x: 5, y: 10, name: First, pie1: 20, pie2: 30, pie3: 50],[1]…

While the scatter chart pulls the x, y, and name values, I need the pie chart to pull the pie1, pie2, pie3 values and render for each data set in the array.