Hi,
I am creating a chart of type "Column Line Chart".
For this type, the option "Show data values on chart" is disabled.
I would know how to show the data values on the line.
For the charts of types "Column Chart" and "Line Chart", this option is enabled.
Why is not possible select this property for the "Column Line Chart"?
Is there an alternative for this resource, to show the values in the chart?
Thanks
Hello Patricia,
I am following up to see if I may be of further assistance with this issue.
To change the color of the circle that appears around the data points, modify the UltraChart.Tooltips.HighlightOutlineColor property.
Please let me know if you have any other questions about this.
Thank you for your response.
To get the functionality you described in your first question you will need to handle the FillSceneGraph event as I've done in the attached sample project.
I am currently researching your second question.
Hello Dave
This configuration worked for me.
Another points:
- It is possible customize the appearance of the data labels to apply one background color (I already changed the font color and the font size)?- It is possible customize the appearance of the circle which is showed on MouseOver in the point (see attachment)?
To get the behavior you want, remove the SwapRowsAndColumns setting and add the following three lines of code in the Form.Load event handler.
this.ultraChart1.ColorModel.ModelStyle = ColorModels.CustomSkin; this.ultraChart1.ColorModel.Skin.ApplyRowWise = false; this.ultraChart1.ColorModel.Skin.PEs.AddRange(new PaintElement[] {new PaintElement(Color.Red), new PaintElement(Color.Green)});