score:2
Accepted answer
I'm going with the assumption your code above is correct, the way you typed it in production. Then the issue probably lies with your sql query (assumption is that name is from table1 and value is from table2)
SELECT name, value FROM table1, table2
In the above instance, you are not joining them at all. Ideally, when you're outputting two tables, you are joining them at some point:
e.g.
SELECT name , value FROM table1 , table2 WHERE table1.col1 = table2.col2
Source: stackoverflow.com
Related Query
- highchart mysql json issue
- Having Issue on Rendering Highchart from MySQL JSON Output
- Highchart - Display JSON Data - MYSQL / PHP
- Issue with highchart data display when parsing JSON data
- Highchart json from mysql data not able to show up in line graph
- Data parsing from mysql into highchart with json
- highchart mysql json with dropdown select value for where condition
- creating highchart with ajax json data
- Plot Highchart Gauge with JSON Data
- HighChart Heatmap with JSON data
- body click issue with highchart library
- Formatting JSON data monthwise for HighCharts using MySQL
- Strange issue Highchart tick interval
- create a donut chart using highchart using jquery json object
- Highcharts Mysql Json arrays PHP
- Highcharts Mysql Json arrays PHP
- Highchart drillup issue
- Use MySQL data as the chart data for the cakephp highchart plugin
- asp.net mvc highchart linegraph json
- Gauge chart Highchart dial style issue
- How to fill dynamic json value in drill down highchart
- Php and MySQL with Highchart
- Highchart : Json Array For ToolTip
- How to Populate Highchart using Json Object
- Read back chart details from highchart in json
- Highchart JSON pie chart display Slice undefined
- Place Data in Highchart using json and post url
- Highcharts JSON decimal data format issue
- Posted value is not getting in the where clause with json highcharts-php and mysql
- JSON data not showing in highstock Candlestick chart using PHP & MYSQL
More Query from same tag
- Highcharts official + React, series population from JSON?
- Highcharts show menu buttons alongside blank title
- How to get the equation value result using Highcharts-Regression?
- How to use click event on Y-axis label in angular Gantt chart High Chart
- Highcharts putting extra space among legend items
- HighCharts event on column category name click
- Highcharts: How to represent time of the day on x axis in HH:MM:SS format?
- Second yAxis does not scale according to series in Highcharts
- Title/Text In Event (marker) Tooltip?
- React Highcharts Jest testing error: `InvalidCharacterError`
- How to draw points with highcharts-react?
- High chart date time conversion showing wrong values
- highcharts.js push line to the bottom of the charts when y values are all 0
- I want to display bar with minPointLength dynamically when value in null in highchart
- HighCharts graphics not working on Internet Explorer
- HighCharts: drawing graph paper for ECG on Android
- How to change dividing point to comma in decimal value in Highcharts pie chart?
- Issue on Styling Highcharts.js Categories Title
- How to get the DOM properties from event.target, so I can compare them?
- MultiAxis HighChart: show different color
- Highcharts export with custom HTML graph
- Implement Gantt Highcharts in react
- Highcharts - bubble chart with titles at x- and y-Axis - Error #14
- Add element on certain columns in highcharts
- Highcharts: Logarithmic chart with Y Axis [100, 99.9, 99, 90, 0]
- How To disable "shadow-gradient" of format?
- How can I get highcharter to represent a forecast object?
- Vue.js compatible JS chart for indicating value between a high-low range
- Highcharts breaks after getting a variable's value with document.getElementById
- How to change time in hours on HighChart xAxis from Military to Standard time?