Arvin Feng Posted August 15, 2014 Posted August 15, 2014 ECharts http://echarts.baidu.com/index-en.htmlUniGUI 0.95.0.1046Delphi XE6 ECharts0514.rar 4 Quote
joriolm Posted August 24, 2014 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
Arvin Feng Posted August 24, 2014 Author 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
stiaan Posted August 26, 2014 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
Arvin Feng Posted August 26, 2014 Author 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
NelsonFS Posted April 21, 2015 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
mmurgas Posted May 13, 2015 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
mmurgas Posted May 13, 2015 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
Arvin Feng Posted May 13, 2015 Author 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
NelsonFS Posted May 13, 2015 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
Arvin Feng Posted May 14, 2015 Author 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
mmurgas Posted May 16, 2015 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
55143681 Posted February 10, 2020 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
Sherzod Posted February 10, 2020 Posted February 10, 2020 ... options.LoadFromFile(Format('option_%d.txt', [TUniBitBtn(Sender).Tag + 1] ) ); ... ? Quote
55143681 Posted February 11, 2020 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
Sherzod Posted February 11, 2020 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
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.