We currently do not have any plans to release a patch for this behavior. I will file it as a suggestion for the next release. In the interim, you can get the XP style disabled look-and-feel by deriving a class from the particular graph that you are using (WaveformGraph or ScatterGraph). The sample code here shows how this can be done with a WaveformGraph, but you could accomplish with any other Measurement Studio .NET Windows Forms control.
public class MyWaveformGraph : WaveformGraph
{
protected override void OnPaint(PaintEventArgs e)
{
Draw(new ComponentDrawArgs(e.Graphics, ClientRectangle));
if (!Enabled)
{
e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(128, SystemColors.ControlLightLight)), ClientRectangle);
}
}
}
All you need to do in your project is change the type of the designer created instance of the graph to MyWaveformGraph. The code above works with the default XP blue theme only.