Search found 5 matches

by CLON
Thu Jun 21, 2018 11:58 am
Forum: LightningChart Ultimate WPF
Topic: Bar series
Replies: 2
Views: 5517

Re: Bar series

ArctionKestutis wrote:You need to set grouping 'ByLocation' for location field to be taken into account:

Code: Select all

    _chart.ViewXY.BarViewOptions.Grouping = BarsGrouping.ByLocation;
Works perfectly :)

Thanks
by CLON
Thu Jun 21, 2018 7:37 am
Forum: LightningChart Ultimate WPF
Topic: Bar series
Replies: 2
Views: 5517

Bar series

Hi, i'm having trouble trying to add bar values to the bar series of my lightning chart. Here is how i do it : this.<myChart>.BeginUpdate(); this.<myChart>.ViewXY.BarSeries[0].Values.Clear(); this.<myChart>.ViewXY.BarSeries[0].Values.Add(new BarSeriesValues { Value = 150, Location = 22 });; this.<my...
by CLON
Thu Nov 16, 2017 1:51 pm
Forum: LightningChart Ultimate WPF
Topic: YAxis Maximum value
Replies: 1
Views: 5409

YAxis Maximum value

Hi, I'm working on a small WPF application using the chart to display a single bar serie. I couldn't find the right option on the YAxis element that could display a small space between the maximum value of the serie and the top margin of the chart area. Right now the highest bar is stucked to the to...
by CLON
Wed Nov 15, 2017 1:58 pm
Forum: LightningChart Ultimate WPF
Topic: Legend box position
Replies: 2
Views: 5944

Re: Legend box position

Works perfectly, thanks for the quick answer.

Clément
by CLON
Wed Nov 15, 2017 12:54 pm
Forum: LightningChart Ultimate WPF
Topic: Legend box position
Replies: 2
Views: 5944

Legend box position

Hi, I'm using lightning chart for a wpf application with a very simple use case where i want to display a single bar serie. The displaying of the data is fine but i'm concerned about the position of the legend box. I want it to be displayed outside the chart area, at the right of the chart. I've tri...