Search found 17 matches
- Thu Apr 18, 2013 11:04 am
- Forum: .NET
- Topic: Side All bar chart bug
- Replies: 3
- Views: 4981
Re: Side All bar chart bug
Everything works fine with a sample code that I created, so maybe it is my bug. But the exception that I get is strange and points me to TeeChart library: Index was outside the bounds of the array. System.IndexOutOfRangeException: Index was outside the bounds of the array. at Steema.TeeChart.Styles....
- Fri Apr 12, 2013 10:09 am
- Forum: .NET
- Topic: Side All bar chart bug
- Replies: 3
- Views: 4981
Side All bar chart bug
Hello. Create a sample 2 series bar chart. Change one of the series to Side-All sub-type in chart editor. "Index was outside the bounds of the array" exception is thrown and the chart is gone. The same effect is when you try to change sub-type at runtime (using series.SetSubGallery(10) for instance)...
- Thu Apr 11, 2013 9:27 am
- Forum: .NET
- Topic: Stack bar bug?
- Replies: 9
- Views: 10624
Re: Stack bar bug?
Hello Sandra, Thanks for explanation of your idea of stack bar series, it helped me to implement some workarounds in my code so the chart looks good now. But I still think that your implementation of stack bar is a bug. And it's not only a problem of the gallery panel. There is also a series method ...
- Tue Apr 09, 2013 5:48 pm
- Forum: .NET
- Topic: Stack bar bug?
- Replies: 9
- Views: 10624
Re: Stack bar bug?
One more question. If this behavior is by design then please give me a sample source code of creating a valid stack-bar style chart.
regards, Adam
regards, Adam
- Tue Apr 09, 2013 5:39 pm
- Forum: .NET
- Topic: Stack bar bug?
- Replies: 9
- Views: 10624
Re: Stack bar bug?
I don't realy know what you mean by saing that adding a new extra series to a chart is by design and this is not a bug. I have a single series bar chart, then I try to change it to a stack bar sub-type and as the result I get new unneded series, all series values (including original one) are cleared...
- Tue Apr 09, 2013 7:11 am
- Forum: .NET
- Topic: Change default translations
- Replies: 1
- Views: 3222
Change default translations
Hello.
Is it possible to change (override) your default texts of specific words in charts windows? Are there any external resources files that I could change?
For instance I would like to use 'labels' word instead of 'marks'. I don't have the source code of TeeChart component.
regards, Adam
Is it possible to change (override) your default texts of specific words in charts windows? Are there any external resources files that I could change?
For instance I would like to use 'labels' word instead of 'marks'. I don't have the source code of TeeChart component.
regards, Adam
- Tue Mar 26, 2013 9:55 am
- Forum: .NET
- Topic: Stack bar bug?
- Replies: 9
- Views: 10624
Re: Stack bar bug?
Hello Sandra.
'Side' and 'Side All' sub-types are also wrong. New series is added when trying to apply these sub-types to a chart.
regards, Adam
'Side' and 'Side All' sub-types are also wrong. New series is added when trying to apply these sub-types to a chart.
regards, Adam
- Tue Mar 26, 2013 9:08 am
- Forum: .NET
- Topic: Default bar sub-style from the gallery panel is incorrect.
- Replies: 2
- Views: 4215
Re: Default bar sub-style from the gallery panel is incorrect.
Actually it's not only about default Bar sub-type, but, in fact, all sub-types except 'Sides' and 'Side All'.
I think 'Multibar' property is set incorrect (expected is 'None' but actual is 'Side').
I'm talking about 3D charts of course.
regards, Adam
I think 'Multibar' property is set incorrect (expected is 'None' but actual is 'Side').
I'm talking about 3D charts of course.
regards, Adam
- Tue Mar 26, 2013 8:13 am
- Forum: .NET
- Topic: Default bar sub-style from the gallery panel is incorrect.
- Replies: 2
- Views: 4215
Default bar sub-style from the gallery panel is incorrect.
Hi, When you have a chart with multiple series and apply default bar chart sub-style from the gallery panel, bars are not displayed as supposed. In gallery panel bars are one behind the other; but the chart comes up with bars next to each other (and this is actually another bar sub-style - called 'S...
- Thu Mar 21, 2013 2:49 pm
- Forum: .NET
- Topic: Stack bar bug?
- Replies: 9
- Views: 10624
Stack bar bug?
Hello, In gallery panel, when you change bar series sub-type to stack then strange things happen. Looks like extra series is added, number of points in each series is changed, values are set to 0 and 1, and chart is broken. You can check this in code when you apply sub-type: series.SetSubGallery(6),...
- Fri Mar 01, 2013 12:50 pm
- Forum: .NET
- Topic: template without data
- Replies: 1
- Views: 3064
template without data
Hello. I'm saving template of an existing chart to a file. Then I would like to apply this template to another chart, but this second chart has already it's data. I don't want to overwrite this data so I use template without data. But then: - if I apply a template (with IncludingData = False) to an ...
- Tue Feb 26, 2013 1:08 pm
- Forum: .NET
- Topic: GalleryPanel - activate specific chart
- Replies: 7
- Views: 9254
Re: GalleryPanel - activate specific chart
I already found a solution.
I just had to change SelectedChart series based on saved tag parameter.
Adam
I just had to change SelectedChart series based on saved tag parameter.
Adam
- Mon Feb 25, 2013 1:28 pm
- Forum: .NET
- Topic: GalleryPanel - activate specific chart
- Replies: 7
- Views: 9254
Re: GalleryPanel - activate specific chart
Hello Sandra. One more question with gallery panel. You told me how to select (highlight) specific chart in gallery panel. But I also want to change sub-type of the chart (in run-time). I can see that chart sub-type is passed via SelectedChart.Tag property and it's used in OnSubSelected. So I want t...
- Wed Feb 20, 2013 10:09 am
- Forum: .NET
- Topic: GalleryPanel - activate specific chart
- Replies: 7
- Views: 9254
Re: GalleryPanel - activate specific chart
Thanks Sandra, now it works.
But, IMHO, SelectedChart property setter should do this code "for us", so we don't have to know all these visual panels, gradients, levels changes. But it's just my suggestion.
Thanks again,
Adam
But, IMHO, SelectedChart property setter should do this code "for us", so we don't have to know all these visual panels, gradients, levels changes. But it's just my suggestion.
Thanks again,
Adam
- Mon Feb 18, 2013 9:36 am
- Forum: .NET
- Topic: GalleryPanel - activate specific chart
- Replies: 7
- Views: 9254
Re: GalleryPanel - activate specific chart
Hello Sandra. No doubt that your code works, I found the same sample in Feature demo. But this is not what I was asking for. This code does not show how to select specific chart type in gallery panel. Your code changes series type of a sample chart that is shown next to gallery panel when one of the...