Search found 265 matches: series

Return to advanced search

Re: Can TGraph do X,Y plots?

... type of chart the data points can be in any order. You can see a sample scatter chart here: https://www.highcharts.com/docs/chart-and-series-types/scatter-chart The line chart that TGraph has already, is a series chart where the X-axis data is in increasing order starting from the ...
by alvaro533
Wed Mar 07, 2018 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can TGraph do X,Y plots?
Replies: 18
Views: 5592

Re: Can TGraph do X,Y plots?

... type of chart the data points can be in any order. You can see a sample scatter chart here: https://www.highcharts.com/docs/chart-and-series-types/scatter-chart The line chart that TGraph has already, is a series chart where the X-axis data is in increasing order starting from the ...
by James Bott
Wed Mar 07, 2018 1:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can TGraph do X,Y plots?
Replies: 18
Views: 5592

Re: Can TGraph do X,Y plots?

Alvaro, Sorry, no I never did. Most of my graphs are time series and TGraph works great for that. I can't remember what I did for the x,y plots that I needed back then, but I can find no evidence that I ever tried it. The TGraph code is quit complex ...
by alvaro533
Tue Mar 06, 2018 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can TGraph do X,Y plots?
Replies: 18
Views: 5592

Re: Can TGraph do X,Y plots?

Alvaro, Sorry, no I never did. Most of my graphs are time series and TGraph works great for that. I can't remember what I did for the x,y plots that I needed back then, but I can find no evidence that I ever tried it. The TGraph code is quit complex and ...
by James Bott
Tue Mar 06, 2018 5:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can TGraph do X,Y plots?
Replies: 18
Views: 5592

Re: tgraph and Y series alignment

You cannot split the text with different fonts for oGraph:aYVals := { "Jan", "Feb", "Mar", "Apr", "May" } but You can paint / add extra images ( with possible action ) or text to the graph http://www.pflegeplus.com/IMAGES/Graph33.jpg ...
by ukoenig
Wed Feb 14, 2018 10:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492

Re: tgraph and Y series alignment

thank you Mr. Rao and Mr Uwe
by damianodec
Wed Feb 14, 2018 9:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492

Re: tgraph and Y series alignment

A Simple way to do:   ACTIVATE DIALOG oDlg CENTERED ;      ON INIT ( oVert := oGraph:aFont[ 3 ]:Rotate(), ;                oGraph:SetFonts( { nil, nil, oVert } ), ;          &nb...
by nageswaragunupudi
Wed Feb 14, 2018 5:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492

Re: tgraph and Y series alignment

hi Uwe
thank you, but I have 3 graph on dialog I would like TFont():New( "Arial", 0, -14, .F., .T., 900, 0, , .F., .F., .F., 0, 3, 2, 1, ,34 ) on the first graph
by damianodec
Tue Feb 13, 2018 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492

Re: tgraph and Y series alignment

damianodec , I got it working using the original FWH-sample graph.prg I noticed there is NO value to define the text-startposition ( yFont ) at the bottom http://www.pflegeplus.com/IMAGES/Graph32.jpg nType       // Graph TypenDegrade  // Degrade bars color 0, 1, 2l3D         // Show ...
by ukoenig
Tue Feb 13, 2018 3:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492

Re: tgraph and Y series alignment

damianodec , Some years ago 2014 , I created a graph-designer I can define anything I want ( visual design ) like fonts, style colors... There was nothing wrong with the font or class TGraph. I want to update this tool because of many new possible things during this time and screen adjustment for mo...
by ukoenig
Tue Feb 13, 2018 9:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492

Re: tgraph and Y series alignment

hi Uwe, thank you, I try this:     DEFINE FONT oFont NAME "Tahoma" SIZE 0, -11        DEFINE FONT oFontY NAME "Courier new" SIZE 0, -8         oFont45 := oFontY:Rotate( 450 )    mieiFont[3] := oFont45    DEFINE DIALOG oDlg2 SIZE 1080,600 PIXEL  FONT oFont;    STYL...
by damianodec
Tue Feb 13, 2018 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492

Re: tgraph and Y series alignment

I think You have to define a extra font The tested fontstring ( saved to a DBF-field ) cBFont[3] := {"AcmeFont",0,-13,.F.,.F., 900 ,0,,.F.,.F.,.F.,0,3,2,1,,2} I save the fontstring cBFont[3] to a DBF-field like ACTION ( aFont := CHOOSEFONT(), ; oFont0 := BUILDFONT( aFont ) , ; IIF( aFont[ ...
by ukoenig
Mon Feb 12, 2018 2:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492

Re: tgraph and Y series alignment

I Uwe
I would like to rotate the text like 2nd picture
by damianodec
Mon Feb 12, 2018 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492

Re: tgraph and Y series alignment

Did You define a BAR-SEPERATOR :?:

oGraph:nBarSep := nVal // Bar Separator

regards
Uwe :?:
by ukoenig
Mon Feb 12, 2018 1:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492

tgraph and Y series alignment

hi,
I'm working with TGRAPH class and have this graph:
Image

I would like get this kind of alignment:
Image

is it possible?

thanks
by damianodec
Mon Feb 12, 2018 9:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph and Y series alignment
Replies: 10
Views: 2492
PreviousNext

Return to advanced search