How do I change data in a Series (one XY value at a time) and update the chart?
Thanks
Paul
Search found 20 matches
- Wed Nov 28, 2007 4:40 pm
- Forum: VCL
- Topic: Series Data
- Replies: 1
- Views: 4832
- Fri Jul 13, 2007 1:50 pm
- Forum: VCL
- Topic: TeeInspector, Selections
- Replies: 6
- Views: 9465
Thanks - but unfortunately that code doesn't help much either as far as setting up items at run time. All it does is: Inspector.SetProperties(DBChart1.PopupMenu); I'm trying to set up properties indendant of any chart, and I don't have TeeInspector.pas which is where this method is located. I've got...
- Thu Jul 12, 2007 2:14 pm
- Forum: VCL
- Topic: TeeInspector, Selections
- Replies: 6
- Views: 9465
Using TeeInspector, creating items at runtime
Can anyone help with information on using TeeInspector? The example code on "all features" gives no hints for programming with this component. I need to create items at run time, as well as populate the selections.
Thanks
Paul
Thanks
Paul
- Fri Jul 06, 2007 8:51 pm
- Forum: VCL
- Topic: TeeInspector, Selections
- Replies: 6
- Views: 9465
- Fri Jul 06, 2007 6:24 pm
- Forum: VCL
- Topic: TeeInspector, Selections
- Replies: 6
- Views: 9465
TeeInspector, Selections
Can anyone direct me to some example code on how to set up a Selection in the TeeInspector component?
Thanks
Paul
Thanks
Paul
- Fri Aug 05, 2005 12:57 pm
- Forum: VCL
- Topic: Printing Text (&etc) along with Chart
- Replies: 13
- Views: 19215
Hello - Yes, I understand the problem with screen versus printer coordinates. I guess I just assumed that when it's advertized in "All Features" the ability to place text on the paper in the print previewer, it would actually print. It seems reasonable that the writers of TChart would have resolved ...
- Thu Aug 04, 2005 4:29 pm
- Forum: VCL
- Topic: Printing Text (&etc) along with Chart
- Replies: 13
- Views: 19215
Printing Text (&etc) along with Chart
Has anyone had any experience with printing additional text/graphics/etc along with TChart? I can get the text to appear in the previewer, but it never actually prints. I've tried this with several PC's and printers, all the same. The chart prints, but nothing else. Can anyone help with this? Thanks...
- Mon Aug 01, 2005 12:54 pm
- Forum: VCL
- Topic: Printing with other stuff (like a bitmap)
- Replies: 9
- Views: 12504
- Fri Jul 29, 2005 2:08 pm
- Forum: VCL
- Topic: Printing with other stuff (like a bitmap)
- Replies: 9
- Views: 12504
Not quite. The text appears on the Chart, and in the Chart previewer, but does not get printed. Also, I need to print outside the margins of the chart. I was using the code from the demos: with TeePreviewPanel1,Canvas do begin Font.Color:=clRed; Font.Size:=12; TextOut(PaperRect.Left+10,PaperRect.Top...
- Fri Jul 29, 2005 1:01 pm
- Forum: VCL
- Topic: Printing with other stuff (like a bitmap)
- Replies: 9
- Views: 12504
Still no go. Please let me know if I got this right. In addition to Chart1, I have a TPreviewPanel, property Chart is set to Chart1. I also have a TChartPreviewer whose Chart property is also set to Chart1. Both TChartPreviewer and TPreviewPanel have a AfterDraw event. I've placed TextOut code in bo...
- Thu Jul 28, 2005 2:32 pm
- Forum: VCL
- Topic: Printing with other stuff (like a bitmap)
- Replies: 9
- Views: 12504
I'm missing something regarding the OnAfterDraw. How is the TeePreviewPanel relalated to chart and/or TChartPreviewer? It appears as a separate object on the form. Also, in some cases I need to bypass the previewer, and send chart (plus all the other bitmaps, etc) directly to the printer. In effect,...
- Thu Jul 28, 2005 11:26 am
- Forum: VCL
- Topic: Printing with other stuff (like a bitmap)
- Replies: 9
- Views: 12504
- Wed Jul 27, 2005 7:54 pm
- Forum: VCL
- Topic: Printing with other stuff (like a bitmap)
- Replies: 9
- Views: 12504
Printing with other stuff (like a bitmap)
Hello - I need to be able to print a chart, along with a lot of other stuff, including text, lines, a logo (bitmap) etc. One option available to me is to use Rave (ReportPrinter Pro) but I've not run across any examples on how to do this. Another option is to use the custom drawing feature in TChart...
- Mon Jul 18, 2005 3:06 pm
- Forum: VCL
- Topic: Stacking Charts
- Replies: 11
- Views: 14424
I still cannot get the color line to appear. The line appears via the Chart Editor, but I need to create everything at run time. Below is a sample project. The axis and series display fine, but no color line I'm also having the same problem with the cursor tools. What am I missing? Thanks Paul unit ...
- Fri Jul 15, 2005 3:53 pm
- Forum: VCL
- Topic: Stacking Charts
- Replies: 11
- Views: 14424
Still not getting the lines to appear, and I believe it's related to the axis. At run time, I'm creating up to 10 custom axis, and it's one of these axis I need to assign the ColorLine to. I can do it in the Editor, but at run time, no lines. Example: var LeftAxes : array [1..10] of TChartAxis; Bord...