c# - 150K rows for scatter plot graph loading forever? -


i have 150k records of x , y columns , trying draw chart finanicalformula. taking time create chart ever. not throwing error also.

chart1.datasource = dtchart       ' data bind selected data source       chart1.databind()       chart1.chartareas(0).recalculateaxesscale()   chart1.datamanipulator.financialformula(financialformula.forecasting,                           "linear,,false,false",                           chart1.series("series1"),                           chart1.series("linear"))    chart1.datamanipulator.financialformula(financialformula.forecasting,                           "exponential,,false,false",                           chart1.series("series2"),                           chart1.series("exponential"))   chart1.datamanipulator.financialformula(financialformula.forecasting,                           "islogarithmic,,false,false",                           chart1.series("series3"),                           chart1.series("logarithmic"))    chart1.datamanipulator.financialformula(financialformula.forecasting,                           "power,,false,false",                           chart1.series("series4"),                           chart1.series("power"))   chart1.chartareas(0).axisx.minimum = 0   'chart1.chartareas(0).axisx.intervaloffset = 0.1   chart1.chartareas(0).axisy.minimum = 0   'chart1.chartareas(0).axisy.intervaloffset = 0.5 

control coming out these line in debug. after page taking load data on graph. how can resolve this?

the easiest way if can find way reduce point count in data preprocessing (i.e. combining several data points in proximity each other single data point) - interestingly enough dundas has relevant articles on support pages:

  1. improving performance in dundas chart large data sets
  2. grouping data

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -