Replies
Hi Christopher,
Thank you for posting in our forums!
Which Infragistics product are you using?
It is possible also to create your own Nuget packages to use for the builds. You can find more information on this from MS Docs here:
https://docs.microsoft.com/en-us/nuget/create-packages/creating-a-package
Hello,
Thank you for posting in our forums!
Using the steps from this page in our documentation, I've created and attached a sample showing simple steps to create a DropDownButton with two options.
I have included comments in the code for Form1.cs summarizing each section of code and which step they apply to from the documentation.
If you have any further questions or concerns with this, please let me know and I will be glad to help.
Hello Michael,
Thank you for posting in our forums.
I understand you are trying to set the border appearance of particular cells.
We recommend changing the background color of the cells instead of the borders if this is possible. The background color can be changed with the Appearance object.
In order to change the border of the cells, you would need to use a DrawFilter.
Let me know if I may be of further assistance.
Sincerely,
Michael H.
Software Developer
Infragistics, Inc.
http://es.infragistics.com/support
Hello Colin,
Thank you for posting in our forums!
You can set the DataSource property of the UltraChart in order to bind your data to it. You can see an example of binding an array to the chart in our documentation here.
For zooming in the chart, please see our documentation on Scrolling and Scaling the chart.
If you need further assistance with this, please let me know.
Hello Allan Albetski,
Thank you for posting in our forums!
Did you upgrade your project to use the Infragistics v6.2 assemblies? To me, it sounds like the v6.2 assemblies were copied into your project's bin folder or GAC and are still there after uninstalling (which is expected).
The project is likely still referencing the v6.2 assemblies, you just need to find where they are and change the references back to v5.2. What version is your project currently referencing? You should make sure it is referencing the v5.2 DLLs.
If you need further assistance with this, please let me know.
Hi Colin,
Thank you for posting in our forums!
The UltraDataChart is a newer chart control we have developed. You can find examples of the UltraDataChart here:
As for binding your data to the chart, please see the following documentation links:
Data Topics for the UltraChart
Data Topics for the UltraDataChart
If you need further assistance with this, please let me know.
Hello Fragend,
The issue you are having with the first code snippet is that you are not using the correct jQuery selector when binding the events.
And regarding the second snippet, the reason the page is reloading when the igDialog opens is because you are calling the reload() method during the stateChanging event without any additional logic. The igDialog being opened from a closed state will fire the stateChanging event. You will need to add some logic to the event handler for when you want the page to reload.
If you have any further questions with this, please let me know.