154
Views
15
Comments
Solved
Charts - Default Dot
Question

How to make the DOT visible by line Chart?

Where to make the change ?

2020-08-26 14-54-58
Raghuram kamath
Solution

I modified the sample oml you gave me, here is the result. Are you looking for something Different ?



UserImage.jpg
Tamil Mathi P

coder kamath wrote:

I modified the sample oml you gave me, here is the result. Are you looking for something Different ?



Thanks ... It worked ...


2020-02-28 09-46-54
Eduardo Jauch

Hello Tamil,

From here: https://success.outsystems.com/Documentation/10/Reference/OutSystems_APIs/Charts_API#AdvancedFormat

The graphs have a property called Advanced Format, that has a string option called HighchartsJSON.

It is a json configuration that you can use to change the style of the charts elements, like the point style: https://api.highcharts.com/highcharts/plotOptions.line.marker.enabled

You can also format the data points, axis, etc in other properties like Advanced Data Point Format.

Hope this helps (not in front of a computer to provide an example, sorry).

Cheers

UserImage.jpg
Tamil Mathi P

Eduardo Jauch wrote:

Hello Tamil,

From here: https://success.outsystems.com/Documentation/10/Reference/OutSystems_APIs/Charts_API#AdvancedFormat

The graphs have a property called Advanced Format, that has a string option called HighchartsJSON.

It is a json configuration that you can use to change the style of the charts elements, like the point style: https://api.highcharts.com/highcharts/plotOptions.line.marker.enabled

You can also format the data points, axis, etc in other properties like Advanced Data Point Format.

Hope this helps (not in front of a computer to provide an example, sorry).

Cheers


This is working for line chart .
I am using spider web chart component, how to do for this chart?


2020-02-28 09-46-54
Eduardo Jauch

Something like this?

https://www.highcharts.com/demo/polar-spider

You can see the options used there. :)

UserImage.jpg
Tamil Mathi P

Eduardo Jauch wrote:

Something like this?

https://www.highcharts.com/demo/polar-spider

You can see the options used there. :)


yes... but I couldn't find any options for plot or marker 


2020-02-28 09-46-54
Eduardo Jauch

Try to add this: 

plotOptions: {
    line: {
      marker: { enabled: true }
      }
    }

UserImage.jpg
Tamil Mathi P

Eduardo Jauch wrote:

Try to add this: 

plotOptions: {
    line: {
      marker: { enabled: true }
      }
    }

sorry... not working ...


2020-02-28 09-46-54
Eduardo Jauch

Hi, 

Can you provide an OML with a simple graph to show what you're doing, so that we can further investigate?

Cheers.

UserImage.jpg
Tamil Mathi P

Eduardo Jauch wrote:

Hi, 

Can you provide an OML with a simple graph to show what you're doing, so that we can further investigate?

Cheers.

attached the oml 


samplecharts.oml
2020-02-28 09-46-54
Eduardo Jauch

I'll take a look.

UserImage.jpg
Tamil Mathi P

Eduardo Jauch wrote:

I'll take a look.


okay... Thank you ...

2020-08-26 14-54-58
Raghuram kamath

Try this


plotOptions: {
        series: {
            marker: {
                enabled: true
            }
        }
    },

Example with and without

UserImage.jpg
Tamil Mathi P

coder kamath wrote:

Try this


plotOptions: {
        series: {
            marker: {
                enabled: true
            }
        }
    },

Example with and without

Tried , not working


2020-08-26 14-54-58
Raghuram kamath
Solution

I modified the sample oml you gave me, here is the result. Are you looking for something Different ?



UserImage.jpg
Tamil Mathi P

coder kamath wrote:

I modified the sample oml you gave me, here is the result. Are you looking for something Different ?



Thanks ... It worked ...


UserImage.jpg
Sri Vaishnavi Guggilla

Hi 

I would like you have two series lines in one spider chart

 how can I implement in outystems? 


attached the image for reference

Capture.PNG
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.