User (Legacy) Posted December 31, 2002 Author Report Share Posted December 31, 2002 Hi, I am trying to do something like the code below and using a dataTable to pass in the data I want. I set the label format to be a custom format. However, I still get a date in the Xaxis like "12/29/2002 12:00:00 AM" in other words, it seems as if the CustomFormat directive is ignored. I am setting this before binding to the dataset as mentioned in the doc. Am I doing things right? chart1.AxisX.LabelsFormat.CustomFormat = "dd-MMM-yyyy"; Thanks, Madhan Link to comment Share on other sites More sharing options...
User (Legacy) Posted December 31, 2002 Report Share Posted December 31, 2002 Hi, I am trying to do something like the code below and using a dataTable to pass in the data I want. I set the label format to be a custom format. However, I still get a date in the Xaxis like "12/29/2002 12:00:00 AM" in other words, it seems as if the CustomFormat directive is ignored. I am setting this before binding to the dataset as mentioned in the doc. Am I doing things right? chart1.AxisX.LabelsFormat.CustomFormat = "dd-MMM-yyyy"; Thanks, Madhan Link to comment Share on other sites More sharing options...
Software FX Posted January 8, 2003 Report Share Posted January 8, 2003 Only numeric formats are supported in Chart FX Lite, namely Number and Currency. Date and Time are not supported formats. You will need to do the Date formatting prior to passing the data to the chart (in your select statement if you are reading from a data source). -- FP Software FX, Inc. Link to comment Share on other sites More sharing options...
Software FX Posted January 8, 2003 Report Share Posted January 8, 2003 Only numeric formats are supported in Chart FX Lite, namely Number and Currency. Date and Time are not supported formats. You will need to do the Date formatting prior to passing the data to the chart (in your select statement if you are reading from a data source). -- FP Software FX, Inc. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.