msChart missing lines - mschart

I have created a graph based on a datset using VS2010 framework 4.0. I get a report that displays the plotted points but not the connector lines. Is there a reference that needs to be set? I downloaded a msChart sample that imports web.ui.datavisualization.chart but that is not available in my imports that I can see.
Any assistance is appreciated.

Thanks to Dominique I was pointed in the direction of the "Drop series field here" grouping on the chart. Once that was removed I was able to see the graphing lines, rather than have the chart think it had (3) distinct groups it was 1 group over several years.
Thanks for your help.

Related

Power Bi Desktop Error Message: Each original name must belong to the set of all names

I have a query that imports two sheets from an xlsx file, combines the data, unpivots it, and does other cleanup steps. For the resulting fact table I also defined relations to 3 further dim tables.
Then I decided to refactor the query in the PowerQuery editor, including splitting the query up into 3 steps and disabling load of the the first two. (To play it safe I also stored my pbix w/o applying the steps.)
But then after a Close & Apply I got the following cryptic error message:
Something went wrong.
Each original name must belong to the set of all names.
PBIDesktop version is 2.96.701.0 64-bit (August 2021)
Searching the web I found people suggesting that the error might be related to specific PBIDesktop versions and that moving back to a previous version would solve the issue.
For me it was easier than that, though a bit mysterious:
In PowerQuery I enabled load for all sub-queries,
let it apply all my steps and the error message was gone.
Then back in PowerQuery I could disable load for the sub-queries w/o triggering the error again!
I hope that this might help someone somewhen.

How do I plot multiple line series in the same chart?

I'm not that experienced in QT and I need to display 17 line series in the same chart. I tried their example and it's working just for one, maybe two line series. Any ideas on how to show all of them in the same chart?
Since it is better to "give a fishing rod not a fish" as an answer I will explain how link has been found (OP should polish his skills in internet search).
First google: qt chart example
Now to filter this which have multiple sires it is better to switch google search to "Graphics" view
Seen a images page with multiple series can be selected
This gives link to https://doc.qt.io/qt-5/qtcharts-overview.html
And after reading this document there is a link with description of implementation details: https://doc.qt.io/qt-5/qtcharts-overview.html

How to display multi level headers in Aspose cells Java in MS Excel?

Please let me know if Aspose Cells Java API provides a way for doing this?
Please see the attached pic as below : enter link description here
Aspose.Cells for Java can do it but it cannot do it automatically. You will have to write a code for it. Please see this image.
Here the first header has merged cells, Aspose.Cells can merge cells but to merge them, you will have to write the code by yourself.
But if you remove the first header then second header which consists of single cells and its data, which also consists of single cells can be imported to worksheet automatically without writing any code by user via Cells.importData() method.
Note: I am working as Developer Evangelist at Aspose

Dynamic format in aspose.cells generated excel

Is it possible to create a conditional format or something like that where the format is depending on the value of the cell?
For example when there is "#000000" as cell value, the background color of the cell should be black.
It is possible to have a condition on the cell value but I did not find any example where the format is dynamic. And it is no Option to create a format for each possible hex-color =)
Yes it is possible to add such a conditional formatting dynamically using Aspose.Cells. Please add your desired conditional formatting using the Worksheet.ConditionalFormattings collection. It will be better if you create your conditional formatting using Microsoft Excel and then load your workbook using Aspose.Cells and observe the properties of your conditional formatting object by exploring Worksheet.ConditionalFormattings collection and then create the same conditional formatting object through code. If you find any difficulty, then please feel free to post in Aspose.Cells forum on Aspose Website.
Please also see this article for your help in working with conditional formatting.
http://www.aspose.com/docs/display/cellsnet/Conditional+Formatting
Note: I am working as Developer Evangelist at Aspose

Advanced customization of google charts generated from a spreadsheet

I have my beautiful google bar chart that I generated just clicking in "insert chart" from google spreadsheet.
how can I modify it in an advanced way like writing code?
I have to insert a horizontal line in the bar chart that represent the productivity limit.
if I could do that without writing code would be better, but even writing code, I'd like to edit the chart generated by google spreadsheet, not start from scratches.
Tnx!
I solved the problem in this way.
I took the example forum google and i add the link that I got sharing my spreadsheet adding in the end of the link:
&sheet=PivotGiorni&range=A2:B
This set the sheet and the range.
Then the chart just work.
for adding the line I found this.
Thanks to you all! :D