Jump to content
Software FX Community

JuanC

Staff
  • Posts

    863
  • Joined

  • Last visited

  • Days Won

    1

JuanC last won the day on June 23 2020

JuanC had the most liked content!

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

JuanC's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. You can change the colors used by the boxplot, provided that you execute this code after the data has been passed to the chart and the chart has been set to use boxplot int index = stats.Gallery.BoxPlot.ShowOutliers ? 2 : 1; chart1.Series[index + 1].Color = Color.LightGray; chart1.Series[index + 1].Border.Color = Color.Black; chart1.Series[index + 2].Color = Color.LightGray; chart1.Series[index + 2].Border.Color = Color.Black; chart1.Series[index].Color = Color.Black; chart1.Series[index+3].Color = Color.Black; Please note that indices are different depending on whether you are showing Outliers or not. We will be uploading a hotfix for the ignored BoxPlot.Monochrome property in a couple of days, please note that even after installing the hotfix, you will need code to set the colors you want to use, as Monochrome will mean we share the attributes between the upper and lower whiskers and the upper and lower box, so with the hotfix you would need something like stats.Gallery.BoxPlot.Monochrome = true; chart1.Series[0].Color = Color.LightGray; chart1.Series[0].Border.Color = Color.Black; chart1.Series[3].Color = Color.Black; To download a hotfix you will need to have a valid StudioFX subscription and visit https://www.mysoftwarefx.com/hotfix, you can also post your questions/issues at https://www.mysoftwarefx.com/support. The hotfixes also include new functionality, e.g. we recently added a boolean ShowMedian property to BoxPlot. Regards, JuanC
  2. This sets all series to be painted as lines, even if before in the code you are setting a specific series to be painted as a different gallery chart1.AllSeries.Gallery = Gallery.Lines; -- This sets a specific gallery to be painted as curves, it will overwrite previous assignments to AllSeries.Gallery for this particular series chart1.Series[someIndex].Gallery = Gallery.Curve; -- This means if you want all but one of the series to be painted as Bars and the remaining one as Lines, you should first set AllSeries and then the specific series. Regards, JuanC
  3. In order to find out if you are doing something wrong or if there is a bug in our code we will need a repro case. Regards, JuanC
  4. If you know for sure your clients all use Internet Explorer I would recommend setting the third parameter in the GetHtmlTag call to "ActiveX" The detection process use some extra files that could be different in both servers, note that we use the UserAgent sent by the browser so it is also possible that newer browsers are not being detected (in both servers) as capable of rendering ActiveX controls. Regards, JuanC
  5. Please note that when I suggested to try with a virtual folder, I meant manually creating a virtual folder in IIS. You cannot run the installer with parameters but as far as I remember there is a chance to change the target directory in one of the screens. JuanC
  6. Did you try creating a brand new virtual directory on IIS? JuanC
  7. In the error IIS is trying to execute this DLL As I said you want to configure IIS to only "serve" these files for download, if you manually added it to ISAPI/CGI, you must undo these changes. I would recommend you manually create a new virtual directory for testing, copy one or more DLL files and check if you point your browser to one of the DLLs if IIS returns the file or if it tries to execute it. JuanC
  8. This file needs to be downloaded to the client, not executed by IIS. Normally it should be placed in a directory where all users have read but not execute access. JuanC
  9. Have you checked the IIS log to see why the NetIEClient.Loader.dll is not being returned to the browser? Please note that depending on your settings, you might need to turn on logging and request the page again. Regards, JuanC
  10. Can you please post some sample data along with an image of the chart you would want to create for such data? In our product some gallery types (like Scatter, Line, Area) support arbitrary X values while others (like Bar) do not as it would cause Bars to be overlapped or not have the same width. Regards, JuanC
  11. DockArea is an enumeration, so you should be able to write chart1.LegendBox.Dock = DockArea.Left; JuanC
  12. In ChartFX 7 you need to use DateTime.ToOADate() to pass a date as a double. Regards, JuanC
  13. Hi, I am using a trial version of ChartFX for WPF application. I would like to draw a line graph with DateTime as the x-axis. The chart is being created but x-axis showing default DateTime (starts from 01/Jan/2000 00:00). But I am providing DateTime from 06/12/2018 00:00.

    Request you to provide the appropriate solution on the same

    qwe.png

  14. Please try downloading the most recent hotfix for ChartFX Client Server 6.2 (as of this post the most recent public build is 6.2.6134) and try again. If the problem persists, please send us the source of the smallest sample application that replicates the issue. Regards, JuanC
  15. Can anyone help me on issue :charts are not displaying on server after publishing , it's shows the following error 2-7, it is working fine at local  but  after Published in server, Charts are not displaying at server site

×
×
  • Create New...