473,396 Members | 2,059 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

ChartFX for .NET

I'm creating graphs which have data between 300 and 400 on the x-axis
and also 900 and 1000 on the x-axis. When this gets plotted, the
graph rescales and the information becomes to small to be of any
significance. Other than zooming in, is there any ohter way of
altering the x-axis so that it displays

300 - 400 (small gap) 900 - 1000

Ive tried doidng this with panes however they only allow the reuse of
the previous xaxis and using multiple x-axes does not tie the data to
the data points.

Any help or suggestions would be appreciated
Nov 21 '05 #1
4 2845
Hello,

Not sure if ChartFX has any custom axis capabilities, if so, you could
normalize the data say between 0-10, and 10-20, then create a custom x scale
that reflects the true data value ranges from 300-400 and 900-1000.

Also, if ChartFX has an alternate chart type that deals with equally spaced
data (and your data is equally spaced within these ranges) you could use
this type of chart instead of one that spaces data with respect to an x
value.

Sounds like you're stepping into an area of advanced charting. If so, you
may want to check out ProEssentials at www.gigasoft.com

best regards,

Robert Dede
Gigasoft, Inc.


"Dave Sauny" <da*******@gmail.com> wrote in message
news:5a**************************@posting.google.c om...
I'm creating graphs which have data between 300 and 400 on the x-axis
and also 900 and 1000 on the x-axis. When this gets plotted, the
graph rescales and the information becomes to small to be of any
significance. Other than zooming in, is there any ohter way of
altering the x-axis so that it displays

300 - 400 (small gap) 900 - 1000

Ive tried doidng this with panes however they only allow the reuse of
the previous xaxis and using multiple x-axes does not tie the data to
the data points.

Any help or suggestions would be appreciated

Nov 21 '05 #2
There is no way to get this axis break in our current version (6.2).
We are discussing how could we enable this scenario in our next
version. It is not clear if we'll do it in the ChartFX core or as an
"Axis" extension but we will try to support this.

In the meantime the only - ugly - workaround would be to "transpose"
the chart (pass X data as Y and viceversa). We do support panes in the
Y axis so you would have to fake multiple series where series(0) has
the 300-400 range and series(1) has the 900-1000 range. If you need
more help pursuing this approach, please post your questions in our
newsgroups (news.softwarefx.com).

Regards,

JuanC

da*******@gmail.com (Dave Sauny) wrote in message news:<5a**************************@posting.google. com>...
I'm creating graphs which have data between 300 and 400 on the x-axis
and also 900 and 1000 on the x-axis. When this gets plotted, the
graph rescales and the information becomes to small to be of any
significance. Other than zooming in, is there any ohter way of
altering the x-axis so that it displays

300 - 400 (small gap) 900 - 1000

Ive tried doidng this with panes however they only allow the reuse of
the previous xaxis and using multiple x-axes does not tie the data to
the data points.

Any help or suggestions would be appreciated

Nov 21 '05 #3
ChartFX does offer custom axis capabilities, you can achieve this
chart by normalizing your data and then either using the Axis.Label
property to assign custom strings for your labels ("300" "350" "400"
"900" etc.) or processing the GetAxisLabel event and returning the
translated string. We also support a chart where the X axis is
"categorical" but the original post suggested that the data is not
equally spaced so I assumed X axis values are significant.

I started my post stating that we do not support this because I feel a
real solution for your scenario would be for the axis to really
support this gap in the scale and we will try to address this in our
next version.

Translating the data may work in your scenario but depending on how
dynamical your chart is, you will have to do extra work, e.g. if you
have an active chart you will also have to process the GetTip event to
customize the data shown in the tooltip. Also if you allow the user to
interact with the chart using our dialogs, the data editor, showing
point labels or copying the data to the clipboard, you will find that
this "faked" data will reappear.

Regards,

JuanC
Software FX, Inc.

"Robert Dede" <ro****@gigasoft.com> wrote in message news:<b8********************@giganews.com>...
Hello,

Not sure if ChartFX has any custom axis capabilities, if so, you could
normalize the data say between 0-10, and 10-20, then create a custom x scale
that reflects the true data value ranges from 300-400 and 900-1000.

Also, if ChartFX has an alternate chart type that deals with equally spaced
data (and your data is equally spaced within these ranges) you could use
this type of chart instead of one that spaces data with respect to an x
value.

Sounds like you're stepping into an area of advanced charting. If so, you
may want to check out ProEssentials at www.gigasoft.com

best regards,

Robert Dede
Gigasoft, Inc.


"Dave Sauny" <da*******@gmail.com> wrote in message
news:5a**************************@posting.google.c om...
I'm creating graphs which have data between 300 and 400 on the x-axis
and also 900 and 1000 on the x-axis. When this gets plotted, the
graph rescales and the information becomes to small to be of any
significance. Other than zooming in, is there any ohter way of
altering the x-axis so that it displays

300 - 400 (small gap) 900 - 1000

Ive tried doidng this with panes however they only allow the reuse of
the previous xaxis and using multiple x-axes does not tie the data to
the data points.

Any help or suggestions would be appreciated

Nov 21 '05 #4
thanks guys,

I'm gonna try and transpose my data and see what that does, if it
doesn't work, I'll just have to hope that the next release version
holds the keys to all my data problems!

Dave

Ju*****@hotmail.com (JuanC) wrote in message news:<1a**************************@posting.google. com>...
ChartFX does offer custom axis capabilities, you can achieve this
chart by normalizing your data and then either using the Axis.Label
property to assign custom strings for your labels ("300" "350" "400"
"900" etc.) or processing the GetAxisLabel event and returning the
translated string. We also support a chart where the X axis is
"categorical" but the original post suggested that the data is not
equally spaced so I assumed X axis values are significant.

I started my post stating that we do not support this because I feel a
real solution for your scenario would be for the axis to really
support this gap in the scale and we will try to address this in our
next version.

Translating the data may work in your scenario but depending on how
dynamical your chart is, you will have to do extra work, e.g. if you
have an active chart you will also have to process the GetTip event to
customize the data shown in the tooltip. Also if you allow the user to
interact with the chart using our dialogs, the data editor, showing
point labels or copying the data to the clipboard, you will find that
this "faked" data will reappear.

Regards,

JuanC
Software FX, Inc.

"Robert Dede" <ro****@gigasoft.com> wrote in message news:<b8********************@giganews.com>...
Hello,

Not sure if ChartFX has any custom axis capabilities, if so, you could
normalize the data say between 0-10, and 10-20, then create a custom x scale
that reflects the true data value ranges from 300-400 and 900-1000.

Also, if ChartFX has an alternate chart type that deals with equally spaced
data (and your data is equally spaced within these ranges) you could use
this type of chart instead of one that spaces data with respect to an x
value.

Sounds like you're stepping into an area of advanced charting. If so, you
may want to check out ProEssentials at www.gigasoft.com

best regards,

Robert Dede
Gigasoft, Inc.


"Dave Sauny" <da*******@gmail.com> wrote in message
news:5a**************************@posting.google.c om...
I'm creating graphs which have data between 300 and 400 on the x-axis
and also 900 and 1000 on the x-axis. When this gets plotted, the
graph rescales and the information becomes to small to be of any
significance. Other than zooming in, is there any ohter way of
altering the x-axis so that it displays

300 - 400 (small gap) 900 - 1000

Ive tried doidng this with panes however they only allow the reuse of
the previous xaxis and using multiple x-axes does not tie the data to
the data points.

Any help or suggestions would be appreciated

Nov 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
by: Rob Agar | last post by:
hi all, I have a problem which I believe others have experienced before, but as far as I can see has not been resolved. Basically, the form refuses to close. Neither clicking the 'X' button...
1
by: Weichsi | last post by:
Did anyone ever use texts in ChartFX that contain chars like '+' or '-' as axis labels. If i set the text for a label (e.g. 'KK 1+') i get '+ KK 1' printed in the chart. It doesn't help to use...
1
by: Dave Sauny | last post by:
I have a chart drawn in chartfx with multiple series on the same graph. However, the X and Y values have different title, ie basing the data on 3 columns Col1 Col2 Col3 I want each...
0
by: Dave | last post by:
Hey all, Am having a slight problem when trying to use chartfx to plot an XY chart against a dataset. When i do the code below, The graph gets plotted fine, however, the X-Axis is full of odd...
1
by: Dave | last post by:
Hi all, Ok basically what I am trying to do is this: I have a line graph with multple series what i want the user to be able to do is click and highlight an area of the graph in order to apply...
0
by: cprestino | last post by:
I am creating a graph in ChartFX using .net. I have the graphs working correctly when it is defined as an image. However when I change this graph to use Flashwriter, The graph is outputted as a...
1
by: Dave | last post by:
Hi all, I have a slight problem when using chartfx in vb.net. I have a line graph that needs to be able to plot 10,000 points. I believe that this isn't too unfeasible however whenever I begin...
0
by: DaTurk | last post by:
Hi, I don't even know if many people use this product, but bless you if you do and know what I'm talking about. We recently upgraded ChartFX to 7.0, and are having some difficulties with the...
6
by: Dan Reber | last post by:
I am about to purchase a chart control for my application but I am not sure which one to go with. Does anyone have any pros/cons for either component? I have already tried both and they seem very...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.