Jump to content
Software FX Community

Flack

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by Flack

  1. Hello, I'm getting a bit puzzled, with the personalized. I have an interactive chart (htmltag=".Net"), and have an event on the saving of the chart personalized. This works fine, the settings are kept except from all the titles. I can change the font, the text of the title in the interactive mode, but looks like it's not sent back in the event. Here is the code I'm using. What am I missing or doing wrong? private void Chart1_Personalized(object sender, PersonalizedEventArgs e){switch (e.Action) { case PersonalizedAction.Save: Chart1.Import(e.Stream); Chart1.Export(FileFormat.Binary,@"C:\Inetpub\wwwroot\ChartFXDataChange\ConfigCharts\mychart.cfx"); break; case PersonalizedAction.Load: Chart1.Import(FileFormat.XML,@"C:\Inetpub\wwwroot\ChartFXDataChange\ConfigCharts\mychart.cfx");break; } }
×
×
  • Create New...