Search found 234 matches: graphic

Return to advanced search

Re: Google Graph extra graphic ? (Navaro)

> Making more than 1 panel is possible then ?

yes

> the call in the ON Init will be more complex

A little more, not too much :-)

> Just to know if possible for later use...

Yes it is
by Antonio Linares
Thu Feb 22, 2024 3:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

Making more than 1 panel is possible then ? oPanel1, oPanel2 also oWebview1, oWebview2 and oWebView:SetHtml( Html1()... // Graphtype1 (google gauge) oWebView:SetHtml( Html2()... // Graph 2 (google bar) the call in the ON Init will be more complex Just to know if possible for later use...
by Marc Venken
Thu Feb 22, 2024 2:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

> Isn't this what we are doing now ? of do you mean something else ?

that is exactly what we are doing now, placing the webview inside a panel
by Antonio Linares
Thu Feb 22, 2024 1:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

Antonio Linares wrote:You can not mix FWH controls with TWebView

TWebView is just for HTML, etc

Keep them apart


Isn't this what we are doing now ? of do you mean something else ?
by Marc Venken
Thu Feb 22, 2024 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

I put the dll's in de sample folder where they are now, but I don't see the difference of the problem before with resolution. For the Xbrowse : PROG = Arduino program item MOV = Move servo motor TMP = Temperature sensor value NUM = Program number (steps 1 to xxx that the robot is doing) cronologic s...
by Marc Venken
Thu Feb 22, 2024 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

Dear Mark,

well done!

Another way is updating after editing a xbrowse cell. If you let me know what cells will keep the values then we can do it also.

I am emailing you an updated webview DLLs that fix the resolution change. Please try them, thank you
by Antonio Linares
Thu Feb 22, 2024 4:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

Working the way I can Thank you Antonio. #include "FiveWin.ch"#Define CLR_ORANGE     nRGB( 255, 165, 000 )extern dbfcdxfunction Main()   local oDlg, oWebView, oBrush   local oBtn1, oBtn2, oBtn3, oPanel   DEFINE BRUSH oBrush FILE "..\bitmaps\backgrnd\iosbg.bmp"   D...
by Marc Venken
Wed Feb 21, 2024 7:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

Here you have it. The values are changing from the button, next is to change them from the xbrowse events: #include "FiveWin.ch"#Define CLR_ORANGE     nRGB( 255, 165, 000 )extern dbfcdxfunction Main()   local oDlg, oWebView, oBrush   local oBtn...
by Antonio Linares
Wed Feb 21, 2024 2:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

Thanks...

Imagen.... Arduino has more than 30 million active users. FW needs only 0.01% to grow with 3000 users )))) Just kidding Antonio

But I will post my experience and program as user in a Arduino FB of 92.000 users :mrgreen:
by Marc Venken
Wed Feb 21, 2024 1:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

Dear Marc,

I am coding it, please wait...
by Antonio Linares
Wed Feb 21, 2024 12:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

You can not mix FWH controls with TWebView

TWebView is just for HTML, etc

Keep them apart
by Antonio Linares
Wed Feb 21, 2024 10:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

Easily ? depends on your skilss of Java, html and Css, but I agree, seeing this there is a potential use for it (in my case this program) As you try, My controls of FW are froozen or the html code is keeping buzy because I can't click or even select the program. I run it from samples folder, so back...
by Marc Venken
Wed Feb 21, 2024 10:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

Dear Marc,

Using oWebView:Eval( cJavaScriptCode ) you can modify the chart data, etc.

As you see we can easily use web components from our desktop apps thanks to Class TWebView :-)
by Antonio Linares
Tue Feb 20, 2024 10:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

a Quick update I tried .... Not working (but I have to read into the Webview information) Trying to make the background transparent <div id="chart_div" style="width: 400px; height: 120px;"><background-color="transparent;"></div> If the html is made and...
by Marc Venken
Tue Feb 20, 2024 10:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499

Re: Google Graph extra graphic ? (Navaro)

Here you have it from a dialog: #include "FiveWin.ch"function Main()   local oDlg, oWebView    DEFINE DIALOG oDlg TITLE "Google charts"   ACTIVATE DIALOG oDlg CENTERED ;      ON INIT ( oWebView := TWebView():New(...
by Antonio Linares
Tue Feb 20, 2024 10:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 17
Views: 499
Next

Return to advanced search

cron