Thank you so much for answering. I have users of my software who definitely will complain about why I have changed the layout. Is there any other series whereby I can achieve the same effect as shown in the attached image?
Hi I have just updated to version 2011 from 8.07. In the old version I had an AreaSeries with a gradient starting on red and ending on yellow, which gave a very nice "red mountain" like picture. However, in the new version I get some strage vertizal zones (see attached image). Any advice on how to r...
Hi I have a problem with area series. I have a video player like application with 12 tchart connected to 12 images. The chart shows some an area series related to an image. On top of the area series there is a fast line which shows the time progress. See below for example Clipboard02.jpg However the...
Hi Narcis I'm using RAD 2007 (C++ personality) and TeeChart 8.04. The code is pretty simple. 1. Add a TChart 2. Add two point series 3. Add two MarksTipTool and set one to all series and the other to Series2. 4. Add some points at run time. Below is shown C++ constructer and dfm. Should I also uploa...
Hi I have a small question regarding the Markstip tool. I have a chart with a highly varying number of series. To the chart I have attached TWO MarksTip Tools: 1. For all series show the Label 2. For one specific series only show X and Y values. The hints are correctly displayed in the chart. Howeve...
Hi I have a problem with the Chart Editor and a ContourSeries. At design time the editor gives me access to the following tabs: Format, Grid3D, General, Marks and Data Source. However, at run time (CharEditor->Execute) I only have access to General, Marks and Data Source Why are Format and Grid3D no...
HI I have a problem with a 2D filled Contour plots. Just placing a chart with a 2D contour series and using the code below: Series1->IrregularGrid = true; Series1->Brush->Style = bsSolid; for (int i=0;i<10;i++) { for (int j=0;j<25;j++) Series1->AddXYZ(i,i*j-random(0.5*i*j),j); } This gives contours ...
Hi After a zoom my chart sometimes (approx. every 5'th time) looks strange. The axes has "two" scales and the area outside the chart has an incorrect color. Then when a point is added to the graph everything looks fine again. I only have two event connected to the Chart:: BeforeDrawChart and OnClick...