Chart bars overlapping
-
I am having a problem with bar charts in the plugin.
I have made the following query:
“select KO, Submission, Decision, Draw from (
select count(finish) as KO from test_prefixtblfight where finish like “%KO%”) as a,
(select count(finish) as Submission from test_prefixtblfight where finish like “%submission%”) as b,
(select count(finish) as Decision from test_prefixtblfight where decision like “%yes%”) as c,
(select count(finish) as Draw from test_prefixtblfight where draw like “%yes%”) as d”which returns the values:
KO Submission Decision Draw
301 277 423 3however, when I build a chart of from this query, the chart displays the bars as overlapping. ie the four bars are all on top of each other.
Am I doing something wrong?
https://www.ads-software.com/extend/plugins/wp-business-intelligence-lite/
- The topic ‘Chart bars overlapping’ is closed to new replies.