Search found 6 matches

by usmanwaheed
Thu Jul 25, 2019 11:49 pm
Forum: LightningChart Ultimate How-To's
Topic: "Parallel Coordinates" Charts
Replies: 14
Views: 56425

Re: "Parallel Coordinates" Charts

Plus if I wanted to add some lines with same color how can i do that where are you handling the color because when I add the one more line with same eye color it always create a new line with different color. m_listPersons.Add(new BasicPersonInfo(70, 175, EyeColor.Brown, 25, 125, 70)); m_listPersons...
by usmanwaheed
Thu Jul 25, 2019 11:37 pm
Forum: LightningChart Ultimate How-To's
Topic: "Parallel Coordinates" Charts
Replies: 14
Views: 56425

Re: "Parallel Coordinates" Charts

Thank you so much for your help that works for me. Just one more thing in your example above you are showing titles with person 1 , person 2 and so on how are you doing it as i am following exactly the same code but it does not come up in my code.
by usmanwaheed
Wed Jul 24, 2019 6:06 am
Forum: LightningChart Ultimate How-To's
Topic: "Parallel Coordinates" Charts
Replies: 14
Views: 56425

Re: "Parallel Coordinates" Charts

This is the outcome i am getting.
by usmanwaheed
Wed Jul 24, 2019 12:21 am
Forum: LightningChart Ultimate How-To's
Topic: "Parallel Coordinates" Charts
Replies: 14
Views: 56425

Re: "Parallel Coordinates" Charts

I also don't understand where are you using afterrendering?
by usmanwaheed
Tue Jul 23, 2019 11:13 pm
Forum: LightningChart Ultimate How-To's
Topic: "Parallel Coordinates" Charts
Replies: 14
Views: 56425

Re: "Parallel Coordinates" Charts

private void AxisY_RangeChanged(object sender, RangeChangedEventArgs e) { m_chart.BeginUpdate(); int iPerson = 0; foreach (BasicPersonInfo person in m_listPersons) { double[] attribValues = person.GetValues(); PointLineSeries series = m_chart.ViewXY.PointLineSeries[iPerson]; //Update all other attri...
by usmanwaheed
Tue Jul 23, 2019 5:58 am
Forum: LightningChart Ultimate How-To's
Topic: "Parallel Coordinates" Charts
Replies: 14
Views: 56425

Re: "Parallel Coordinates" Charts

namespace ParallelCoordinates { /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> /// public partial class MainWindow : Window { //List of persons private List<BasicPersonInfo> m_listPersons = new List<BasicPersonInfo>(); private int AttributeCount = 6; public MainWindow() { Ini...