Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1700
Custom design about the view
posted

Hello,

On this topic, I'll se this project as reference : http://es.infragistics.com/community/forums/p/96839/477946.aspx

I want to design a few things :

-Display axis X and Y like this : http://gyazo.com/4512ad3761bff3ccc0411f5ae50617e4

-Squares need to be with max size between two points : http://gyazo.com/1470cfeafbafad0cd50f1599f313274f

-Display color scale at the column 1 and not in the DataChart that is in the column 0 by default

-The tooltip is open only when the user between 2 or 4 squares like here : http://gyazo.com/799b7d647d4f759d65ee835810dbc7e8, and axes values need to be highlited.

Thanks for your help

Parents
No Data
Reply
  • 34510
    Offline posted

    Hi teamtim,

    - For the X and Y axis, are you referring to the tickmarks?  You can extend the tickmarks in the chart so they stick out a bit similar to in that screenshot by setting the TickLength property on the axis.  Please keep in mind that this only affects the major tickmarks (tickmarks that have a label next to them).  Minor tickmarks cannot be extended past the chart boundaries.

    - The square sizes are entirely up to the DataTemplate that is rendering them.  If you are using a bubble series then you should be able to set their size while using the SizeScale property.  Don't manually set the width and height in your template and it should automatically adjust the marker size for you.  If not you can always bind to whatever you set the RadiusScale to be and use that to calculate the size that you want.

    - I'm not sure what you mean by "displaying color scale at column 1 and not in DataChart that is in column 0 by default".

    - The tooltip will appear when the mouse is over the marker for the series.  As for axis value highlighting, are you talking about highlighting the actual axis label values that appear at the bottom?  What are you expecting will cause the axis to highlight?

Children