You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. I had question with some troubles. I used modifikated AutoUpdate Sample and adding values in loop(1k-25k values)
`public void AddItem(int ItemValue)
{
observableValues.Add(new ObservablePoint(index++, ItemValue));
}
public void RemoveItem(int ItemRemove)
{
if (observableValues.Count < 2) return;
observableValues.RemoveAt(ItemRemove);
index--;
}
public void ClearItems()
{
observableValues.Clear();
index = 0;
}`
if i will replace LineSeries instead of ColumSeries. The Chart not showing collums. (But very very sometime shows collums Correctly) But if mouse over into chart. The value displayed.
X a Y Axes Not scalling and displayed . (Sometime scalling and displayed normally)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi. I had question with some troubles. I used modifikated AutoUpdate Sample and adding values in loop(1k-25k values)
`public void AddItem(int ItemValue)
{
Image:

Beta Was this translation helpful? Give feedback.
All reactions