User (Legacy) Posted December 19, 2003 Report Share Posted December 19, 2003 Hello, we use the following DataBinding: (a) m_chartFX.DataSourceSettings.DataType[0] = SoftwareFX.ChartFX.DataType.XValue; ( m_chartFX.DataSourceSettings.DataType[1] = SoftwareFX.ChartFX.DataType.NotUsed; © m_chartFX.DataSourceSettings.DataType[2] = SoftwareFX.ChartFX.DataType.Value; (d) m_chartFX.DataSourceSettings.DataType[3] = SoftwareFX.ChartFX.DataType.Label; How is it possible in Chart FX for .NET to display the entries from (d) synchronously as labels with the x-values from (a)? When we use the data from (a) for its own (also set: m_chartFX.DataSourceSettings.DataType[3] = SoftwareFX.ChartFX.DataType.NotUsed; ) it works fine. But we want to chart values in relation with timestamps. Especially on daylight-saving time when the x-values goes from 02:00 to 03:00 we want to label it with twice the label “02:00”. In a sequence the labels should look like: 01:00 … 02:00 … 02:00 … 03:00 … but synchronously to its values in (a). Any suggestions? Link to comment Share on other sites More sharing options...
Software FX Posted December 19, 2003 Report Share Posted December 19, 2003 Labels in an axis are evenly spaced, they are not associated with a specific X-Value. The LabelValue property allows you to map the label index to the X-Axis value. -- 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.