stone feng 7 Posted August 15, 2014 Share Posted August 15, 2014 ECharts http://echarts.baidu.com/index-en.htmlUniGUI 0.95.0.1046Delphi XE6 ECharts0514.rar 4 Quote Link to post Share on other sites
rencarnacion 70 Posted August 15, 2014 Share Posted August 15, 2014 Excellent !! Quote Link to post Share on other sites
Sherzod 1183 Posted August 18, 2014 Share Posted August 18, 2014 Thanks !! Quote Link to post Share on other sites
stiaan 24 Posted August 18, 2014 Share Posted August 18, 2014 Awesome! Thanks! Quote Link to post Share on other sites
joriolm 7 Posted August 24, 2014 Share Posted August 24, 2014 Hi Arving, great charts!! I compiled in Delphi 2006 and I'm getting this error: [Pascal Fatal Error] Main.pas(9): F1026 File not found: 'System.Generics.Collections.dcu' Some clues? please. Quote Link to post Share on other sites
stone feng 7 Posted August 24, 2014 Author Share Posted August 24, 2014 Hi Arving, great charts!! I compiled in Delphi 2006 and I'm getting this error: [Pascal Fatal Error] Main.pas(9): F1026 File not found: 'System.Generics.Collections.dcu' Some clues? please. delete System.Generics.Collections unit in main.pas Quote Link to post Share on other sites
stiaan 24 Posted August 26, 2014 Share Posted August 26, 2014 Hi I get this error: [MODULE_MISS]"zrender/tool/color" is not exists! I have downloaded ZRender, but I'm unsure on where to install the required files. Please advise. Regards Quote Link to post Share on other sites
stone feng 7 Posted August 26, 2014 Author Share Posted August 26, 2014 Hi I get this error: [MODULE_MISS]"zrender/tool/color" is not exists! I have downloaded ZRender, but I'm unsure on where to install the required files. Please advise. Regards Fixed. Quote Link to post Share on other sites
stiaan 24 Posted September 4, 2014 Share Posted September 4, 2014 Thanks for the update. Testing... Quote Link to post Share on other sites
delphiboy 1 Posted April 21, 2015 Share Posted April 21, 2015 great charts!! Quote Link to post Share on other sites
NelsonFS 27 Posted April 21, 2015 Share Posted April 21, 2015 Very good Arvin Feng !!! Thank you. Know you how to add a onClick event over a serie? Will be usefull when a user click over a serie and a callback event call unigui to show a grid with details. Quote Link to post Share on other sites
mmurgas 7 Posted May 13, 2015 Share Posted May 13, 2015 Dear, I have Delphi 2010 and unigui 0.99.10.1172 I could not check this demo, it looks phenomenal. My error is "[MSBuild error]" 0 "is an invalid value for the" debugInformation "parameter of the" DCC "task" .... any help will thank Greetings to all mmurgas Quote Link to post Share on other sites
mmurgas 7 Posted May 13, 2015 Share Posted May 13, 2015 Solution RxForForX , abrir cualquier archivo DPROJ-editor de texto, en busca de una fila existe El código XML 1 <DCC_DebugInformation > 0 </ DCC_DebugInformation > Y cambiarlo a El código XML 1 <DCC_DebugInformation > false </ DCC_DebugInformation > Quote Link to post Share on other sites
stone feng 7 Posted May 13, 2015 Author Share Posted May 13, 2015 Very good Arvin Feng !!! Thank you. Know you how to add a onClick event over a serie? Will be usefull when a user click over a serie and a callback event call unigui to show a grid with details. update. Quote Link to post Share on other sites
NelsonFS 27 Posted May 13, 2015 Share Posted May 13, 2015 Thanks Arvin, But when run, appears the Ajax error message: [MODULE_MISS]"zrender/tool/color" is not exists! I Tried to find out on site: //location: 'http://ecomfe.github.io/zrender/src' But sources not exist. Please post together. Quote Link to post Share on other sites
stone feng 7 Posted May 14, 2015 Author Share Posted May 14, 2015 Thanks Arvin, But when run, appears the Ajax error message: [MODULE_MISS]"zrender/tool/color" is not exists! I Tried to find out on site: //location: 'http://ecomfe.github.io/zrender/src' But sources not exist. Please post together. update. 1 Quote Link to post Share on other sites
NelsonFS 27 Posted May 14, 2015 Share Posted May 14, 2015 Thanks man!!! Quote Link to post Share on other sites
Stemon63 73 Posted May 15, 2015 Share Posted May 15, 2015 Thanks!! Very good! Quote Link to post Share on other sites
mmurgas 7 Posted May 16, 2015 Share Posted May 16, 2015 This excellent .... unfortunately could not see the PieIf you could see thishttp://echarts.baidu.com/doc/example/mix9.html#-enfantastic... thank Quote Link to post Share on other sites
delphiboy 1 Posted October 30, 2015 Share Posted October 30, 2015 great charts!! Quote Link to post Share on other sites
bdiri 13 Posted February 8, 2016 Share Posted February 8, 2016 excellent thanks Quote Link to post Share on other sites
55143681 17 Posted February 10, 2020 Share Posted February 10, 2020 On 8/18/2014 at 1:28 PM, Sherzod said: Thanks !! Hello Sherzod: I create a new Project to test the demo, I have copy echarts.js to debug/win32/files but I have a error. Can you spent some time to check for me? thank you. d_demoddd.zip Quote Link to post Share on other sites
Sherzod 1183 Posted February 10, 2020 Share Posted February 10, 2020 ... options.LoadFromFile(Format('option_%d.txt', [TUniBitBtn(Sender).Tag + 1] ) ); ... ? Quote Link to post Share on other sites
55143681 17 Posted February 11, 2020 Share Posted February 11, 2020 17 hours ago, Sherzod said: ... options.LoadFromFile(Format('option_%d.txt', [TUniBitBtn(Sender).Tag + 1] ) ); ... ? There are some buttons in the bottom of the Form, click any button will load a corresponding txt file(base json data) and draw a chart. procedure TMainForm.UniBitBtn1Click(Sender: TObject); var options: TStringList; begin options := TStringList.Create; try options.LoadFromFile(Format('option_%d.txt', [TUniBitBtn(Sender).Tag + 1] ) ); UniSession.AddJS(Format('var option = %s', [options.Text])); UniSession.AddJS('myChart.setOption(option, true);'); Self.Caption := Format('%s - %s', ['ECharts', TUniBitBtn(Sender).Caption]); finally options.Free; end; end; procedure TMainForm.UniFormShow(Sender: TObject); begin UniTimer1.Enabled := True; end; Quote Link to post Share on other sites
Sherzod 1183 Posted February 11, 2020 Share Posted February 11, 2020 2 hours ago, 55143681 said: There are some buttons in the bottom of the Form, click any button will load a corresponding txt file(base json data) and draw a chart. procedure TMainForm.UniBitBtn1Click(Sender: TObject); var options: TStringList; begin options := TStringList.Create; try options.LoadFromFile(Format('option_%d.txt', [TUniBitBtn(Sender).Tag + 1] ) ); UniSession.AddJS(Format('var option = %s', [options.Text])); UniSession.AddJS('myChart.setOption(option, true);'); Self.Caption := Format('%s - %s', ['ECharts', TUniBitBtn(Sender).Caption]); finally options.Free; end; end; I realized that it should be loaded from a file. But where is the file? Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.