Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Data Visuliser & Data Tables
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Data Visuliser & Data Tables
#8029
Data Visuliser & Data Tables 13 Years, 6 Months ago Karma: 0
In the examples I can see that there is a bar chart that has several elements grouped.

if I have two tables coming from a database

select Convert(WeekNumber,CHAR(2)),Sales from `Christmas_Reporting_Core`.`Christmas_Stock` WHERE Type=1 ORDER BY WeekNumber

and

select Convert(WeekNumber,CHAR(2)),Stock from `Christmas_Reporting_Core`.`Christmas_Stock` WHERE Type=1 ORDER BY WeekNumber

What should happen is that these two calls would show two column groupings

how can I make the second SQL call !! ie recover the second data set and add this to the graph.

Regards
Mark
The administrator has disabled public write access.
 
#8033
Re:Data Visuliser & Data Tables 13 Years, 6 Months ago Karma: 748
Hello,

Try to use the following SQL query:

Code:


SELECT 
  CONVERT(WeekNumber, CHAR(2)) AS WeekNum,
  Sales,
  Stock 
FROM 
  `Christmas_Reporting_Core`.`Christmas_Stock` 
WHERE 
  Type=1 
ORDER BY 
  WeekNumber



and set 'Revert data' parameter to 'Yes' in module settings.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#8035
Re:Data Visuliser & Data Tables 13 Years, 6 Months ago Karma: 0
I cannot locate the Revert Data Parameter !!
Mark
The administrator has disabled public write access.
 
#8036
Re:Data Visuliser & Data Tables 13 Years, 6 Months ago Karma: 748
Check that you use the latest version of 'ARI Data Tables' module (v. 1.3.11).



Regards,
ARI Soft
The administrator has disabled public write access.
 
#8037
Re:Data Visuliser & Data Tables 13 Years, 6 Months ago Karma: 0
Thanks guys
The administrator has disabled public write access.
 
Go to topPage: 1