Search found 32 matches

by bamboo
Wed Feb 11, 2009 10:29 am
Forum: VCL
Topic: How to unlock ChartGrid.Series
Replies: 1
Views: 2473

How to unlock ChartGrid.Series

When using TChartGrid I first assign all the multiple series generated to my ChartGrid. All still fine. When moving a data point (dragpoint) i set ChartGrid.Series to the series of the data point that I am moving. All still fine. When I disable the DragPoint feature and want to see all multiple seri...
by bamboo
Fri Jan 16, 2009 7:34 am
Forum: VCL
Topic: How to save data to an original with multiple columns
Replies: 1
Views: 2454

How to save data to an original with multiple columns

I have a CSV file with multiple columns which I use to construct my graph. I use TSeriesTextSource and use only two columns (x, y) at a time. After editing the graph I would like to save the new data into the original CSV file replacing the selected columns with the new data and leaving the unused c...
by bamboo
Wed Dec 03, 2008 12:01 pm
Forum: VCL
Topic: How have left and bottom axis with same fixed increment
Replies: 1
Views: 2500

How have left and bottom axis with same fixed increment

How do get my left and bottom axis to have the same fixed increment withou resizing the chart on the screen For example x = -10, -5, 0, 5, 10, ... and y = -30, -25, 20, -15, -10, -5, 0, 5, 10, 15, 20, 30, ...... The pixels per increment should also be the same. I went into tools, and set the increme...
by bamboo
Fri Jun 20, 2008 8:41 am
Forum: VCL
Topic: How to use TCurveFittingFunction properties at runtime
Replies: 2
Views: 3241

Thank you.
by bamboo
Fri Jun 20, 2008 7:19 am
Forum: VCL
Topic: How to use TCurveFittingFunction properties at runtime
Replies: 2
Views: 3241

How to use TCurveFittingFunction properties at runtime

I am creating a TCurvFittingFunction at runtime. I wish to set the properties such as FirstPoint, Endpoint and PolyDegree. How do I do it. I used the following code. tmpPointSeries1:=TPointSeries.Create(self); AddSeries(tmpPointSeries1); //Populate them with data (here random) tmpPointSeries1.FillSa...
by bamboo
Wed Jun 18, 2008 12:44 pm
Forum: VCL
Topic: Showing the point selected in TChart in TChartGrid.
Replies: 6
Views: 7819

Thank you.

Row and Col are the two properties I never imagined would be used for this.

Thanks again.
by bamboo
Wed Jun 18, 2008 8:00 am
Forum: VCL
Topic: How can I increase the number of decimals in Y column
Replies: 4
Views: 4450

Thank you.
by bamboo
Wed Jun 18, 2008 7:47 am
Forum: VCL
Topic: Deleting more than one point in a series
Replies: 2
Views: 3236

Thank you very much.
by bamboo
Wed Jun 18, 2008 7:38 am
Forum: VCL
Topic: Showing the point selected in TChart in TChartGrid.
Replies: 6
Views: 7819

Thanks for the code. I have used similar code. The problem is that it does not display data points towards the end of the graph unless you manually scroll to that point in ChartGrid. If you set the ChartGrid to display 10 points at a time and your series displays 100 points and you then select point...
by bamboo
Tue Jun 17, 2008 12:28 pm
Forum: VCL
Topic: Deleting more than one point in a series
Replies: 2
Views: 3236

Deleting more than one point in a series

I am attempting to deleting multiple points is a series. The code belows shows what I am trying to do. The problem is that it does not delete all the points. {*************************************************} procedure TFormPlot.chrtPlotMouseDown(Sender: TObject; Button: TMouseButton; Shift: TShift...
by bamboo
Thu Jun 12, 2008 7:59 am
Forum: VCL
Topic: Showing the point selected in TChart in TChartGrid.
Replies: 6
Views: 7819

Thanks, but I am using TChart and TChartGrid and my series are created at runtime.

The link you directed me to seems to be for database entries only. By the way what is the name of Table1 component in the code.
by bamboo
Thu Jun 12, 2008 7:36 am
Forum: VCL
Topic: Showing the point selected in TChart in TChartGrid.
Replies: 6
Views: 7819

Showing the point selected in TChart in TChartGrid.

When ever I click on a point on my series I want the row to be highlighted. I am able to do this using the ChartGrid1.Selection := myRect; property. The problem is that the row is not immediately visible. How can get this highlighted row to be visible immediately? And is using the code above the onl...
by bamboo
Thu Jun 12, 2008 7:28 am
Forum: VCL
Topic: ChartGrid for huge datafiles
Replies: 8
Views: 6751

Thanks.

The

Code: Select all

ChartGrid1.Chart := Chart1 
works nice.

I also found that the values in columns 1 and 2 were a bit huge. When I used another huge data file (45000 entries) with smaller values my program was fine.

I have other issues at the moment but I will address as a new topic.

Thanks again.
by bamboo
Mon Jun 09, 2008 7:09 am
Forum: VCL
Topic: ChartGrid for huge datafiles
Replies: 8
Views: 6751

Hi Narcis,

I have used the 2nd (x-axis) and 3rd (y-axis) columns.

To simplify the program you can use the TChart, TChartGrid and TSeriesTextSource. You have to converted the data file to a csv format prior to using it.

Hope this helps.

Thanks.
by bamboo
Fri Jun 06, 2008 8:48 am
Forum: VCL
Topic: ChartGrid for huge datafiles
Replies: 8
Views: 6751

Hi there,

I have zipped the file this time around. Hope you can find it.

Thanks.