Search found 25 matches: addserie

Return to advanced search

Ayuda con TGRAPH ( nuevamente )

... // barras REDEFINE GRAPH oGraf3 OF oDlgGraf ID Gr_Grafico3 TITLE "Grafica 3" XGRID; YGRID XVALUES YVALUES LEGENDS TYPE 4 // torta oGraf1:AddSerie(aHoras2, "Actual", RGB(100,150,150)) oGraf1:SetYVals(aLeyenda2) oGraf1:lViewVal = .t. // ver valores oGraf1:lBorders = .t. oGraf1:cTitX ...
by José Camilo
Fri Sep 02, 2022 6:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con TGRAPH ( nuevamente )
Replies: 0
Views: 223

Re: New FTDN December 2019 (FWH 19.12)

... de tiempo de ejecución. Esto sucede cuando el programador asigna manualmente los valores de :aSeries, en lugar de utilizar el método prescrito AddSerie(). Corregido. * Corrección: FWMariaRowSet: Error en tiempo de ejecucción cuando se usan los métodos CancelBatch() y IsBatchEdited(), introducido ...
by Antonio Linares
Thu Jan 02, 2020 12:45 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December 2019 (FWH 19.12)
Replies: 2
Views: 3030

New FTDN December 2019 (FWH 19.12)

... is nil raises runtime error. This happens when values of :aSeries are assigned manually by the programmer, instead of using the prescribed method AddSerie() Fixed. * Fix: FWMariaRowSet: Runtime error when using methods CancelBatch() and IsBatchEdited() introduced in FWH1909 fixed. * FWMariaRowSet: ...
by Antonio Linares
Sat Dec 21, 2019 5:59 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December 2019 (FWH 19.12)
Replies: 2
Views: 3030

Re: Error em TGraph

Defintion of series have more of 4 parameters METHOD AddSerie( aDat, cLegend, nColor, nType , l3D, lViewVal, lDrawPoint, lDrawLine, cSRLegend ) CLASS TGraph and you defintion is oGraph:aSeries = { { "Series 1", CLR_CYAN , , },; // only 4 ...
by cnavarro
Thu Sep 07, 2017 2:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error em TGraph (resolved)
Replies: 2
Views: 647

Re: TGraph

Hola Armando: Te comento, encontré aquí en el foro una actualización a la TGraph que realizó RSU, y simplemente con agregar con oGraph:AddSerie( ... ) una nueva serie con un numero menor o mayor de elementos, la TGraph te ajusta la grafica y no te manda la que tenga menos valores a cero. ...
by joseluisysturiz
Mon May 02, 2016 8:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TGraph
Replies: 8
Views: 3096

Re: TGraph

Hola Armando: Te comento, encontré aquí en el foro una actualización a la TGraph que realizó RSU, y simplemente con agregar con oGraph:AddSerie( ... ) una nueva serie con un numero menor o mayor de elementos, la TGraph te ajusta la grafica y no te manda la que tenga menos valores a cero. ...
by EBM
Mon May 02, 2016 4:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TGraph
Replies: 8
Views: 3096

Re: A problem GRAPH-refresh from folder and DBF-values

Cristobal, thank You very much. I think I have to use oGraph1:AddSerie( aJS1,"Serie", 16771797 ) // AddSerie( aDat, cLegend, nColor, nType, l3D ) changing the array, the refresh is working fine http://www.pflegeplus.com/IMAGES/Tgraph7.jpg ...
by ukoenig
Tue Sep 29, 2015 2:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem GRAPH-refresh from folder and DBF-values
Replies: 5
Views: 1357

Re: TGRAPH Technical Question

yes now run ok George
I made an error on addserie method because you added other lines
by Silvio.Falconi
Sun Dec 28, 2014 11:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGRAPH Technical Question
Replies: 38
Views: 9369

Re: TGRAPH Technical Question

... ; "Bar: " + AllTrim( Str( Int( nAt / Len( oGraph:aSeries ) ) + 1 + ; If( nAt % Len( oGraph:aSeries ) == 0, -1, 0 ) ) ) } I have : oGraph:AddSerie(aEntrate,"Entrate",cClrEntrate) oGraph:AddSerie(aUscite,"Uscite",cClrUscite) If I want show the cLegend of each series ...
by Silvio.Falconi
Fri Dec 26, 2014 11:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGRAPH Technical Question
Replies: 38
Views: 9369

Re: TGRAPH Technical Question

Antonio, I found that "METHOD AddSerie( aDat, cLegend, nColor, nType, l3D )" is creating the same aDat array twice (when using two series value) to hold first and second series. This the reason that I had to add two arrays in this ...
by George
Fri Dec 26, 2014 7:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGRAPH Technical Question
Replies: 38
Views: 9369

Re: TGRAPH Technical Question

... 1050 ) Called from: source\Main.prg => TAPPLICATION:ACTIVATE( 394 ) Called from: source\Main.prg => MAIN( 55 ) I found an error on new addserie method Time from start: 0 hours 0 mins 9 secs Error occurred at: 26-12-2014, 17:05:15 Error description: Error BASE/1123 Parametro errato: ...
by Silvio.Falconi
Fri Dec 26, 2014 4:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGRAPH Technical Question
Replies: 38
Views: 9369

Re: TGRAPH Repopulate

... "Seconde zone de titre" oGraf:cTitX := "Demandes" oGraf:cTitY := "Valeurs" * oGraf:lPopUp := .T. oGraf:AddSerie(aSerie, "Valeurs", RGB(128,128,255)) oGraf:SetYVals(aLeyen) oLbxta:bChange := { || oGraf:cTitle:=trim(wrh->lib),??? here to place ...
by Jack
Wed Jun 25, 2014 3:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGRAPH Repopulate
Replies: 30
Views: 9943

Re: Unas preguntas sobre TGraph

Fernando, yo lo hago asi: Cargo mis valores: oGra:AddSerie(aCant,cVar,nRGB(nRandom(254),nRandom(254),nRandom(254))) //nRGB(106,130,218)) oGra:SetYVals(aDia) cuando cambio valores hago esto: inicializo oGra:aSeries :={} oGra:aData := {} oGra:aSTemp ...
by Francisco Horta
Tue Aug 02, 2011 9:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Unas preguntas sobre TGraph
Replies: 1
Views: 456

Otras Modificaciones a TGraph de Alfredo Arteaga

... 8 Serie1={1,2,3,4,5,6,7,8} //sin cambio Serie2={3,NIL,NIL,3} => {3,NIL,NIL,3,,,,,} //tamaño 8 * Se ha añadido tres nuevos parametros al metodo AddSerie() AddSerie( aDat, cLegend, nColor, nType, l3D, lViewVal, lDrawPoint, cxLegend ) lViewVal: por defecto .T. y si es .F. no muestra los valores ...
by RSalazarU
Thu Oct 14, 2010 8:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Otras Modificaciones a TGraph de Alfredo Arteaga
Replies: 10
Views: 2955

Re: Donde descargar ultima version tgraph

... distintas, otro seria el cuento :D . Ahora bien :idea: :idea: , la solucion seria modificando el codigo de la clase, y al momento de llamar a AddSerie(), tb mandar una variable de configuracion que indique si se vcan a imprimir o no los valores de esta serie, y al momento de graficar Paint(), ...
by RSalazarU
Thu Oct 14, 2010 11:50 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Donde descargar ultima version tgraph
Replies: 7
Views: 2810
Next

Return to advanced search