Copying data from a datagrid to a clipboard is easy - tons of examples, lots of methods, it's in a predictable format.
What about copying data from a series? Generally speaking, a single line would be easy. Adding lines would be easy, if they had identical hAxis values. The difficulty comes in when you have missing values in some series that the linechart would just draw a line through while connecting the two surrounding, non-missing, points. This would cause the number of values to be less when copied, thus throwing off a simple grab like you do for datagrids. The only thing I can come up with is to copy each line individually with its own header/legend. Has anyone had to tackle this problem before? Any suggestions? Tref

