2

What is the best way to draw charts in c++ ?? So far I've been using external program (gnuplot) to draw charts. I generated a configuration file and file with data to draw. However I think it's not the best solution. What is in Your opinion the best library to draw charts in c++??

Lou Franco
  • 87,846
  • 14
  • 132
  • 192
john
  • 39
  • 1
  • 6

1 Answers1

-3

A chart is not really a well defined output format. In a way the bunch of numbers sent to gnuplot are already a kind of chart.

To answer to your question you should define what you mean by chart : some image with a given format ? some html source code ? etc.

kriss
  • 23,497
  • 17
  • 97
  • 116
  • ^ This is a comment, not an answer. – Seth Johnson Feb 28 '11 at 00:17
  • @Seth Johnson: I disagree with that point of view. In it's current form the correct answer is 'there is no possible answer' and the reason there is no answer (and can't be any) is because as I said a chart is not a well defined output format. ie: the word `chart` can only be understood by a human being and has no meaning for a computer. Others indeed gave similar answers in comments, but they just answered in comments. – kriss Feb 28 '11 at 01:01