Charting with IronPython - charts

I'm trying to plot a signal in IronPython (VS 2012 Environment), from my quick google search I couldn't find anything useful, other than couple of paid options
ChartFX & VISIFire
found from a similar question posted here (4 years ago),
Just wondering if there's any open source charting tool available now for Iron Python, please note Trail or Community edition aren't an option.
any suggestions would be much appreciated, Thanks!

OxyPlot is a modern cross-platform plotting library for .NET.
It is published under the MIT license and can therefore be used in commercial projects.
It supports lots of chart types, provides examples and documentation and is under active development.

Related

Can I use PVS-Studio Free with Unreal Engine 4?

Studio developers,
Thanks you so much for your great product and ability to use it free for individual developers.
Could you help me with the above question - can I use PVS-Studio Free with Unreal Engine 4? If yes - can you provide some tutorial or help information?
Thanks.
You can use PVS-Studio Free by adding special comments to the files with the source code of only your project. The Unreal Engine 4 files or any other third-party library should be excluded from the analysis in the settings of the analyzer.
If you use PVS-Stuio Plugin for Visual Studio or Standalone, add the path to the library in the menu Options --> Don’t Check Files.
If you use a utility pvs-studio-analyzer in Linux, then use the parameter –e:
pvs-studio-analyzer analyze … -e /path/to/lib/ …
Note: due to the peculiarities of the build system (for example, during the auto-generation of the compilable files), this comment will be lost, free PVS-Studio mode will not be available. Unfortunately, such non-standard scenarios do not fall under the support that we provide for the free version of PVS-Studio. If you have such a situation, we suggest using a usual trial mode to assess the abilities of the analyzer.

C/C++ support (binding) of reporting tools?

From the last few days, i am trying to figure out best reporting tools for my work. I have mongoDB database server and now i need to integrate it with reporting tool. For mongoDB i used the C binding so i am looking for a reporting tool in C/C++. I came across some great tools like BIRT, Jaspersoft and Pentaho but i didn't get clean answer whether they have support for C/C++. So my question is do they have C/C++ binding or API?.
Also if you have some other tools recommendation for my work then please share that also.
To answer your question: No, these tools don't have a C/C++ API.
However, as Stennie pointed out in the comment, this shouldn't really be necessary, as you can use them with a http API. If you really want to use integrate them tightly with a C/C++ program, consider embedding Java into your program and see Embed Java into a C++ application?.

Version Control System for Dynamics CRM 2011/2013

I have started using Git for my other development projects (PHP, HTML, JavaScript, etc.) and can now see how beneficial it is, however I've been unable to find anything similar for Dynamics CRM 2011/2013 as a lot of the solution development is done within the web interface.
I'm guessing this is not possible, but could someone with more experience than me please confirm this or let me know which tools I should be looking into?
Thanks
You can use the Visual Studio Developer Toolkit available in the SDK to version control your plugins and web resources initially. I'd recommend this as your first step.
If you choose to take it further you can also look at using the SolutionPackager tool to version control your solutions. This will split out your solution zip file into separate version controllable files for each component. It works best when you follow the developer workflow outlined in the linked MSDN article

Tools for XML based Directed Graphs?

Visual Studio 2010 has this feature called Directed Graph Documents (files with a dgml extension). It can be used to show relationships between objects similar to UML. I was able to play with it during the VS2010 beta. The version I now have (VS2010 pro) doesn't have this functionality and I don't have access to the Ultimate or Architect versions.
Is there a similar XML based directed graph technology you can recommend?
Five months without an answer, so I guess the answer as of now is...
No, there are no tools other than Visual Studio 2010 Ultimate or Architect that can work with Directed Graph Documents. VS2010 Premium can read dgml documents, but not edit them.

How do I create an OLE Control?

Without going into why I need OLE.. I need to embed a managed C++ custom control into MS Word 2007 (2003 also would be nice).
So the question is How do I make this managed (.net 3.5) control OLE compliant ?
It seems that I need to do something akin to implementing an interface. But an up-to-date tutorial is something that is proving difficult to find.
I've read the wikipedia article on OLE. All the information that I could google out is ancient (1994) and/or VB centric (4.0-6.0). Anything that makes sense to current times... links/books please post.
Thanks for reading..
Andrew Whitechapel writes about managed controls as ActiveX controls in Office documents. You can read his article here: http://blogs.msdn.com/andreww/archive/2008/11/24/using-managed-controls-as-activex-controls.aspx.
Update: See also this related question.