Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I creating LogLogarithmicAxis-log(log()) referring to OxyPlot's LogarithmicAxis -log()
this is my code
OxyPlot.Axes.LogLogarithmicAxis.cs
OxyPlot.Wpf.LogLogarithmicAxis.cs
Examples/ExampleLibrary/Axes/LogarithmicAxisExamples.cs
chart image by code :
chart image
but i need this style :
chart image
Comparing the two chart images, Tick and Label on Y axis are different.
how to coding...help..
Please add a minimal, complete and viable example. And embed your code and images in the question. Someday you will remove the files from your google drive and the question won't be of help to anyone.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 days ago.
Improve this question
I need a very simple example in C, using the XCB library. With a simple window that, when moved, shows its x and y position in the title or terminal. One event that works to capture motion is XCB_CONFIGURE_NOTIFY.
Preferably counting its borders and title, that is, that when I position it in the upper left corner it actually marks 0,0.
My difficulty started the moment everything I tried only displays 0.0 in any position or at most 5.19 in the top left corner.
NOTE:
Please, don't use examples of Xlib or any other library that someone's imagination has. I want to learn XCB!
Examples only in the C language, remembering that C is not C++.
For those who want to know why: NONE important! What comes to mind at this moment is being able to see on my screen what size I imagine I'll need for something else, because for me this is just basic!
And no, I don't want to use a ruler on the screen to know the size of my window :)
I tried several like: xcb_get_geometry (All), xcb_translate_coordinates, xcb_configure_notify_event_t, xcb_expose_event_t
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
In ExtJs 4.2, I am using Ext.tab.Panel.
The issue I am facing is, tabs position is coming as center. What is property to set my tabs to right align?
The tab bar of Ext.tab.Panel is instance of Ext.tab.Bar class
Ext.tab.Panel have tabBar config where you can define extra configuration for tab panel's tab bar.
There you can set alignment of tabs to center by:
tabBar: {
layout: { pack: 'center' }
},
See fiddle: https://fiddle.sencha.com/#fiddle/1sc
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Can anyone help me with style on WPF. I am trying to make something like on screenshot. I don`t understand how to make borders of TabItemHeader and TabItemContent like that.
Updated:
I have make something like that: http://hostingkartinok.com/show-image.php?id=2fd7604dd85877a6d7fa625de9439d7a
But the last problem is Border of content. How to set thickness of it?
<Border BorderThickness="2" />
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Does anyone know how I could create a vertical sliding menu in Angular ?
Like the new facebook sliding menu that comes from left side of the screen.
There are couple of fiddles available but all are for jquery
You need to create a directive to do that. You can start with snap.js (Angular-Snap).
DEMO
<snap-drawer>
I'm in a drawer!
</snap-drawer>
<snap-content>
I'm your main content!
</snap-content>
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want draw lines and then I click the line and delete it. How can I find the line that I wanted by using mouse? Can an one help me?
Your question has nothing to do with OpenGL you know. You'll have to keep a collection of lines around, get your mouse input somehow (depends on what you're using), figure out whether the mouse position during a click was within an existing line (with some margin of error), and then remove that from the collection.