Search found 20 matches: legends

Return to advanced search

Ayuda con TGRAPH ( nuevamente )

... RESOURCE "GRAFICA" //OF oWnd REDEFINE GRAPH oGraf1 OF oDlgGraf ID Gr_Grafico TITLE "Grafica 1" XGRID; YGRID XVALUES YVALUES LEGENDS TYPE 3 // puntos REDEFINE GRAPH oGraf2 OF oDlgGraf ID Gr_Grafico2 TITLE "Grafica 2" XGRID; YGRID XVALUES YVALUES LEGENDS TYPE 1 // ...
by José Camilo
Fri Sep 02, 2022 6:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con TGRAPH ( nuevamente )
Replies: 0
Views: 289

Re: New FTDN February/Febrero 2021 (FWH 21.02)

... 3D> ] ; [ <lxGrid: XGRID> ] ; [ <lyGrid: YGRID> ] ; [ <lxVal: XVALUES> ] ; [ <lyVal: YVALUES> ] ; [ <lLegends: LEGENDS> ] ; [ TYPE <nType> ] ; [ FONT <oFont> ] ; => ; <oGraph> := TGraph():Define( <nWidth>, ; <nHeight>, <cTitle>, ...
by Antonio Linares
Mon Apr 05, 2021 6:43 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2021 (FWH 21.02)
Replies: 2
Views: 2353

New FTDN February/Febrero 2021 (FWH 21.02)

... 3D> ] ; [ <lxGrid: XGRID> ] ; [ <lyGrid: YGRID> ] ; [ <lxVal: XVALUES> ] ; [ <lyVal: YVALUES> ] ; [ <lLegends: LEGENDS> ] ; [ TYPE <nType> ] ; [ FONT <oFont> ] ; => ; <oGraph> := TGraph():Define( <nWidth>, ; <nHeight>, <cTitle>, ...
by Antonio Linares
Wed Mar 24, 2021 8:56 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2021 (FWH 21.02)
Replies: 2
Views: 2353

Re: FWH Graphs

Please see the method SetFonts( aFonts ) of TGraph class in tgraph.prg. This class uses 9 fonts for 1) Title, 2) xFont, 3) yFont, 4) Legends, 5) Subtitle, 6) xTitle, 7) yTitle, 8 ) Values, 9) Values bold You may set the font you want for values using :SetFonts( { nil, nil, nil, nil, nil, ...
by nageswaragunupudi
Thu Oct 24, 2019 1:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH Graphs
Replies: 9
Views: 2440

Re: RANGO DE VALORES DE Y EN TGRAH

... que te da el error? Definicion con recurso, no se si eso tendra que ver REDEFINE GRAPH oGraph ID 111 TYPE 1 OF oDlg XGRID XVALUES YVALUES POPUP LEGENDS // 21/06/2019 // TGraph 2.0, FiveWin Graphics without vbx!// Thanks to all FiveWin forum friends// Autor: Alfredo Arteaga - 23/03/2008// email: ...
by joseluisysturiz
Wed Jul 24, 2019 8:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RANGO DE VALORES DE Y EN TGRAH
Replies: 23
Views: 3886

Re: SELECTOR DE COLORES

... nDefaultClr ) --> nSelectedRGBcolor Using google translator Greetings Mr.Nao, I have reviewed, the selector I need to put the colors to the legends in TGraph, but I see that using is CLR_, is there a way to convert the return value of ChooseColor in CLR_ or in RGB ().? or from where can ...
by joseluisysturiz
Thu Jun 27, 2019 3:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SELECTOR DE COLORES
Replies: 6
Views: 1154

Re: TGraph valores y titulos en negrita

... := aFont[1] // Title // oGraph:aFont[2] := aFont[2] // xFont // oGraph:aFont[3] := aFont[3] // yFont // oGraph:aFont[4] := aFont[4] // Legends // oGraph:aFont[5] := aFont[5] // Subtitle // oGraph:aFont[6] := aFont[6] // xTitle // oGraph:aFont[7] := aFont[7] // y Title // oGraph:aFont[8] ...
by carito
Wed May 29, 2019 8:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TGraph valores y titulos en negrita
Replies: 1
Views: 674

TGraph valores y titulos en negrita

... LOCAL oDlg, oGraph DEFINE DIALOG oDlg SIZE 600, 500 oDlg:lHelpIcon := .F. @ 3, 1 GRAPH oGraph SIZE 250, 200 TYPE 1 YVALUES 3D XGRID YGRID XVALUES LEGENDS oGraph:aSeries = { { "Serie 1", CLR_CYAN , 1 , },; { "Serie 2", CLR_YELLOW , 1 , .T. },; { "Serie 3", CLR_HRED ...
by carito
Wed May 29, 2019 2:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TGraph valores y titulos en negrita
Replies: 1
Views: 674

Tgraph + Pie

Hi Guys,

Do you have some example of how to build a Graph of PIE with tGraph ?
I don't know how to define series and legends for this kind of graph :(
by vilian
Tue Apr 16, 2019 9:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tgraph + Pie
Replies: 2
Views: 666

Re: Can TGraph do X,Y plots?

... := nTop::chart_bottom := nBottom::chart_left := nLeft::chart_right := nRight  And finally this lines in the Paint method before the tag // legends or // Max, Min values    IF ::nType == GRAPH_TYPE_XY_AQ      FOR nJ := 1 TO Len( ::aSeries )         for nI := 1 to len( ::XY_Values[nJ] ...
by alvaro533
Tue Mar 06, 2018 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can TGraph do X,Y plots?
Replies: 18
Views: 6048

Re: tgraph and Y series alignment

... like oGraph:aFont[1] := aFont[1] // Title oGraph:aFont[2] := aFont[2] // xFont oGraph:aFont[3] := aFont[3] // yFont oGraph:aFont[4] := aFont[4] // Legends oGraph:aFont[5] := aFont[5] // Subtitle oGraph:aFont[6] := aFont[6] // xTitle oGraph:aFont[7] := aFont[7] // y Title oGraph:aFont[8] := aFont[8] ...
by ukoenig
Mon Feb 12, 2018 2:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2818

Re: TGraph 2 Y-axis for different's scales

... oDlg;            SIZE 600, 500     @ 1, 1 GRAPH oGraph;            SIZE 285, 220;            TYPE 3;            YVALUES 3D XGRID YGRID XVALUES LEGENDS               oGraph:nPoint:=1        //msgInfo( oGraph:nPenWidth)    oGraph:nPenWidth:=5 // has no effect on pen width. (bug?)             ...
by hebert_j_vargas
Tue Aug 08, 2017 11:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGraph 2 Y-axis for different's scales
Replies: 20
Views: 4089

New FTDN April/Abril 2016 (FWH 16.04)

... 8350, 10315, NIL, NIL, 12340 },; { 12345, -8945, 10560, 15600, 17610 } } * Added a new DATA DATA lViewSRLegend INIT .F. // Allows to see aditional legends to the right of the latest serie value * In SERIES, there are these new attributes: - lViewVal: NIL or .T. .and. oGraph:lViewVal=.T., serie ...
by Antonio Linares
Thu May 12, 2016 6:51 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2016 (FWH 16.04)
Replies: 8
Views: 8380

Re: TGRAPH Repopulate

... : * REDEFINE LISTBOX oLbxta FIELDS ID 200 of oDlgrh REDEFINE GRAPH oGraf OF odlgrh ID 300 TITLE "Evolution" XGRID YGRID XVALUES YVALUES LEGENDS TYPE 2 oGraf:cTitle := "Historique de "+trim(wrh->lib) oGraf:cSubTit:= "Seconde zone de titre" oGraf:cTitX := "Demandes" ...
by Jack
Wed Jun 25, 2014 3:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGRAPH Repopulate
Replies: 30
Views: 11066

Re: Graph Functions Library

Jeff, You can most of this very easily with TGraph. You just need to define the parameters of the graph (e.g. Line type, grids, legends) and feed it the data. This will be much simpler than what you were doing. The only coding would be to do a manual paging which I think you can do by ...
by James Bott
Wed Feb 20, 2013 11:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Graph Functions Library
Replies: 7
Views: 2323
Next

Return to advanced search