score:1

you need to identify what in your chart data could be represented as columns and rows in the table. if you named your x-axis, you could represent the chart data like this:

color | # of votes | # of points
red     12           7
blue    19           11
... and so on

also, chart data can be represented as a crosstab which is a more direct representation (since datapoint lies where x and y intersects):

             | red | blue | ... and so on
# of votes     12    19
# of points    7     11

here's the example of how you can convert the chart data to crosstab: https://jsfiddle.net/tara5/cjvuphkl/

also, i agree with comments (@alex), that you should provide samples (https://stackoverflow.com/help/how-to-ask), something that you tried to do yourself, but it didn't work. therefore, i cannot be sure if i provided the answer that you are looking for.


Related Query

More Query from same tag