TChart in C++Builder 6.0 rotate chart - c++builder

Can I rotate a chart? I need x on vertical axis and y on horizontal axis.
Can I change x value to vertical axis and y value to horizontal axis?
Or can I rotate of the component TChart (xy values stay standard and I flip component 90)?
Thank you.

The easiest solution would probably be to use swap your values or add your X values as YValues and add your y values as XValues.
Ie, let's say you have your X values in an array called Xdata and your Y values in an array called Ydata. You could add your values with this:
Series1->AddXY(Ydata, Xdata);

Maybe I can write - i used a line(fast line) chart.
There
[IMG]http://i68.tinypic.com/29atrw5.png[/IMG]
is Classical graph and image if I rotate it. If I change x-y values as You wrote I get wrong image.
y = f(x) so it paint for x=1, x=2, ... but i need paint x = f(y) for y=1, y=2, y=3
I need something as is point chart - connect handly in paint
I'm not sure if it is possible change axis or rotate component teeChart.
I probably use TImage and will paint it into image.

today i find that teechart have a series "horiz line" (https://www.steema.com/files/public/teechart/java/v1/docs/Tutorials/tutorial1.htm).
But licence is expensive for our company (https://www.steema.com/buy). We need only one chart with this axes.
Do you know if can I install only some update into BCB 6?

Related

Fill color for each area based on x and y start, end values

I want something like the below screenshot in Highcharts with dateaxis (x-axis), filling colors in the series based on x, y axis start and end values.
Have you tried zones? This is an option available from the API:
https://api.highcharts.com/highstock/series.area.zones

In Geogebra, can you plot the abscissa (xAxis) vertically and the ordinate (yAxis) horizontally?

In GeoGebra, can you plot the abscissa (xAxis) vertically and the ordinate (yAxis) horizontally?
I need this, since I like to visualise an inverse. Since I also like to visualise an Area between different values, I need an IntegralBetween for an interval on y's (so re-interpreting x as y does not work). In addition the function is very tall, so I like to have the layout rotated by 90 degrees.
In GeoGebra's 2D view x always refers to the horizontal and y to the vertical axes. You can however shade the area between two functions in y using inequalities with zero line thickness

How to change the axis of Dual axes Graph

How can we change the y axis of each line chart and colum chart .
I attached the sample.I want to change the y axis data of line to right side and change the colum data to left side.
How can we make it possible
You can look into changing the opposite property for the axis.
http://api.highcharts.com/highcharts#xAxis.opposite
Note, for highstock the default value is the opposite of for highcharts
http://api.highcharts.com/highstock#xAxis.opposite

how to set the interval of points on Y - Axis highcharts

I am using highcharts for the first time, and I am trying to figure out how to set the Y axis points static.I would like to know how to set y-axis values as -0.0000000001,0.00000000,0.0000000001 and so on in Highcharts.
I have used min=-0.0000000005 and max=0.0000000005 , and the points on y axis come up as 0,0.0000,0.0000... Wherein I want it as -0.0000000001,0.00000000,0.0000000001
You can use label formatter and Highcharts numberFormat then return correct values.

Achartengine, how to stretch it beyond?

I have many many X axis points so, chart seems too congested. Users can manually zoom or stretch the chart but is there a way to make chart extend beyond its parent view by default so my x axis values are not so congested?
You can change the visible range:
renderer.setXAxisMin(min);
renderer.setXAxisMin(max);

Resources